blanchon commited on
Commit
ad8bea2
·
1 Parent(s): 18edbf2

Change gradio version

Browse files
Files changed (2) hide show
  1. .gitignore +421 -0
  2. README.md +1 -1
.gitignore ADDED
@@ -0,0 +1,421 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ##### Python.gitignore #####
2
+ # Byte-compiled / optimized / DLL files
3
+ **/__pycache__/
4
+ *.pyc
5
+ *.pyo
6
+ *.pyd
7
+ *.py[cod]
8
+ *$py.class
9
+
10
+ # C extensions
11
+ *.so
12
+
13
+ # Distribution / packaging
14
+ .Python
15
+ build/
16
+ develop-eggs/
17
+ dist/
18
+ downloads/
19
+ eggs/
20
+ .eggs/
21
+ lib/
22
+ lib64/
23
+ parts/
24
+ sdist/
25
+ var/
26
+ wheels/
27
+ wheelhouse/
28
+ share/python-wheels/
29
+ *.egg-info/
30
+ .installed.cfg
31
+ *.egg
32
+ MANIFEST
33
+ *.whl
34
+
35
+ # PyInstaller
36
+ # Usually these files are written by a python script from a template
37
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
38
+ *.manifest
39
+ *.spec
40
+
41
+ # Installer logs
42
+ pip-log.txt
43
+ pip-delete-this-directory.txt
44
+
45
+ # Unit test / coverage reports
46
+ htmlcov/
47
+ .tox/
48
+ .nox/
49
+ .coverage
50
+ .coverage.*
51
+ .cache
52
+ nosetests.xml
53
+ coverage.xml
54
+ *.cover
55
+ *.py,cover
56
+ .hypothesis/
57
+ .pytest_cache/
58
+ cover/
59
+
60
+ # Translations
61
+ *.mo
62
+ *.pot
63
+
64
+ # Django stuff:
65
+ *.log
66
+ local_settings.py
67
+ db.sqlite3
68
+ db.sqlite3-journal
69
+
70
+ # Flask stuff:
71
+ instance/
72
+ .webassets-cache
73
+
74
+ # Scrapy stuff:
75
+ .scrapy
76
+
77
+ # Sphinx documentation
78
+ docs/_build/
79
+ docs/source/_build/
80
+ _autosummary/
81
+
82
+ # PyBuilder
83
+ .pybuilder/
84
+ target/
85
+
86
+ # Jupyter Notebook
87
+ .ipynb_checkpoints
88
+
89
+ # IPython
90
+ profile_default/
91
+ ipython_config.py
92
+
93
+ # pyenv
94
+ # For a library or package, you might want to ignore these files since the code is
95
+ # intended to run in multiple environments; otherwise, check them in:
96
+ .python-version
97
+
98
+ # pipenv
99
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
100
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
101
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
102
+ # install all needed dependencies.
103
+ #Pipfile.lock
104
+
105
+ # poetry
106
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
107
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
108
+ # commonly ignored for libraries.
109
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
110
+ #poetry.lock
111
+
112
+ # pdm
113
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
114
+ #pdm.lock
115
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
116
+ # in version control.
117
+ # https://pdm.fming.dev/#use-with-ide
118
+ .pdm.toml
119
+
120
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
121
+ __pypackages__/
122
+
123
+ # Celery stuff
124
+ celerybeat-schedule
125
+ celerybeat.pid
126
+
127
+ # SageMath parsed files
128
+ *.sage.py
129
+
130
+ # Environments
131
+ .env
132
+ .venv
133
+ env/
134
+ venv/
135
+ ENV/
136
+ env.bak/
137
+ venv.bak/
138
+
139
+ # Spyder project settings
140
+ .spyderproject
141
+ .spyproject
142
+
143
+ # Rope project settings
144
+ .ropeproject
145
+
146
+ # mkdocs documentation
147
+ /site
148
+
149
+ # ruff
150
+ .ruff_cache/
151
+
152
+ # mypy
153
+ .mypy_cache/
154
+ .dmypy.json
155
+ dmypy.json
156
+
157
+ # Pyre type checker
158
+ .pyre/
159
+
160
+ # pytype static type analyzer
161
+ .pytype/
162
+
163
+ # Cython debug symbols
164
+ cython_debug/
165
+
166
+ # PyCharm
167
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
168
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
169
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
170
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
171
+ .idea/
172
+
173
+
174
+ ##### macOS.gitignore #####
175
+ # General
176
+ .DS_Store
177
+ .AppleDouble
178
+ .LSOverride
179
+
180
+ # Icon must end with two \r
181
+ Icon
182
+
183
+ # Thumbnails
184
+ ._*
185
+
186
+ # Files that might appear in the root of a volume
187
+ .DocumentRevisions-V100
188
+ .fseventsd
189
+ .Spotlight-V100
190
+ .TemporaryItems
191
+ .Trashes
192
+ .VolumeIcon.icns
193
+ .com.apple.timemachine.donotpresent
194
+
195
+ # Directories potentially created on remote AFP share
196
+ .AppleDB
197
+ .AppleDesktop
198
+ Network Trash Folder
199
+ Temporary Items
200
+ .apdisk
201
+
202
+
203
+ ##### Linux.gitignore #####
204
+ *~
205
+
206
+ # Temporary files which can be created if a process still has a handle open of a deleted file
207
+ .fuse_hidden*
208
+
209
+ # KDE directory preferences
210
+ .directory
211
+
212
+ # Linux trash folder which might appear on any partition or disk
213
+ .Trash-*
214
+
215
+ # .nfs files are created when an open file is removed but is still being accessed
216
+ .nfs*
217
+
218
+
219
+ ##### Windows.gitignore #####
220
+ # Windows thumbnail cache files
221
+ Thumbs.db
222
+ Thumbs.db:encryptable
223
+ ehthumbs.db
224
+ ehthumbs_vista.db
225
+
226
+ # Dump file
227
+ *.stackdump
228
+
229
+ # Folder config file
230
+ [Dd]esktop.ini
231
+
232
+ # Recycle Bin used on file shares
233
+ $RECYCLE.BIN/
234
+
235
+ # Windows Installer files
236
+ *.cab
237
+ *.msi
238
+ *.msix
239
+ *.msm
240
+ *.msp
241
+
242
+ # Windows shortcuts
243
+ *.lnk
244
+
245
+
246
+ ##### Archives.gitignore #####
247
+ # It's better to unpack these files and commit the raw source because
248
+ # git has its own built in compression methods.
249
+ *.7z
250
+ *.jar
251
+ *.rar
252
+ *.zip
253
+ *.gz
254
+ *.gzip
255
+ *.tgz
256
+ *.bzip
257
+ *.bzip2
258
+ *.bz2
259
+ *.xz
260
+ *.lzma
261
+ *.cab
262
+ *.xar
263
+
264
+ # Packing-only formats
265
+ *.iso
266
+ *.tar
267
+
268
+ # Package management formats
269
+ *.dmg
270
+ *.xpi
271
+ *.gem
272
+ *.egg
273
+ *.deb
274
+ *.rpm
275
+ *.msi
276
+ *.msm
277
+ *.msp
278
+ *.txz
279
+
280
+
281
+ ##### Xcode.gitignore #####
282
+ # Xcode
283
+ #
284
+ # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
285
+
286
+ ## User settings
287
+ xcuserdata/
288
+
289
+ ## Compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
290
+ *.xcscmblueprint
291
+ *.xccheckout
292
+
293
+ ## Compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
294
+ build/
295
+ DerivedData/
296
+ *.moved-aside
297
+ *.pbxuser
298
+ !default.pbxuser
299
+ *.mode1v3
300
+ !default.mode1v3
301
+ *.mode2v3
302
+ !default.mode2v3
303
+ *.perspectivev3
304
+ !default.perspectivev3
305
+
306
+ ## Gcc Patch
307
+ /*.gcno
308
+
309
+
310
+ ##### JetBrains.gitignore #####
311
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
312
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
313
+
314
+ # User settings
315
+ .idea/*
316
+
317
+ # User-specific stuff
318
+ .idea/**/workspace.xml
319
+ .idea/**/tasks.xml
320
+ .idea/**/usage.statistics.xml
321
+ .idea/**/dictionaries
322
+ .idea/**/shelf
323
+
324
+ # Generated files
325
+ .idea/**/contentModel.xml
326
+
327
+ # Sensitive or high-churn files
328
+ .idea/**/dataSources/
329
+ .idea/**/dataSources.ids
330
+ .idea/**/dataSources.local.xml
331
+ .idea/**/sqlDataSources.xml
332
+ .idea/**/dynamic.xml
333
+ .idea/**/uiDesigner.xml
334
+ .idea/**/dbnavigator.xml
335
+
336
+ # Gradle
337
+ .idea/**/gradle.xml
338
+ .idea/**/libraries
339
+
340
+ # Gradle and Maven with auto-import
341
+ # When using Gradle or Maven with auto-import, you should exclude module files,
342
+ # since they will be recreated, and may cause churn. Uncomment if using
343
+ # auto-import.
344
+ # .idea/artifacts
345
+ # .idea/compiler.xml
346
+ # .idea/jarRepositories.xml
347
+ # .idea/modules.xml
348
+ # .idea/*.iml
349
+ # .idea/modules
350
+ # *.iml
351
+ # *.ipr
352
+
353
+ # CMake
354
+ cmake-build-*/
355
+
356
+ # Mongo Explorer plugin
357
+ .idea/**/mongoSettings.xml
358
+
359
+ # File-based project format
360
+ *.iws
361
+
362
+ # IntelliJ
363
+ out/
364
+
365
+ # mpeltonen/sbt-idea plugin
366
+ .idea_modules/
367
+
368
+ # JIRA plugin
369
+ atlassian-ide-plugin.xml
370
+
371
+ # Cursive Clojure plugin
372
+ .idea/replstate.xml
373
+
374
+ # Crashlytics plugin (for Android Studio and IntelliJ)
375
+ com_crashlytics_export_strings.xml
376
+ crashlytics.properties
377
+ crashlytics-build.properties
378
+ fabric.properties
379
+
380
+ # Editor-based Rest Client
381
+ .idea/httpRequests
382
+
383
+ # Android studio 3.1+ serialized cache file
384
+ .idea/caches/build_file_checksums.ser
385
+
386
+
387
+ ##### VisualStudioCode.gitignore #####
388
+ .vscode/*
389
+ # !.vscode/settings.json
390
+ # !.vscode/tasks.json
391
+ # !.vscode/launch.json
392
+ !.vscode/extensions.json
393
+ *.code-workspace
394
+
395
+ # Local History for Visual Studio Code
396
+ .history/
397
+
398
+
399
+ ##### Vim.gitignore #####
400
+ # Swap
401
+ .*.s[a-v][a-z]
402
+ !*.svg # comment out if you don't need vector files
403
+ .*.sw[a-p]
404
+ .s[a-rt-v][a-z]
405
+ .ss[a-gi-z]
406
+ .sw[a-p]
407
+
408
+ # Session
409
+ Session.vim
410
+ Sessionx.vim
411
+
412
+ # Temporary
413
+ .netrwhist
414
+ *~
415
+ # Auto-generated tag files
416
+ tags
417
+ # Persistent undo
418
+ [._]*.un~
419
+ .vscode
420
+ .github
421
+ generated_samples/
README.md CHANGED
@@ -4,7 +4,7 @@ emoji: 🦀
4
  colorFrom: green
5
  colorTo: red
6
  sdk: gradio
7
- sdk_version: 3.48.0
8
  app_file: demo/app_januspro.py
9
  pinned: false
10
  ---
 
4
  colorFrom: green
5
  colorTo: red
6
  sdk: gradio
7
+ sdk_version: 5.13.1
8
  app_file: demo/app_januspro.py
9
  pinned: false
10
  ---