Abhishek Thakur
commited on
Commit
·
c2fd2d2
1
Parent(s):
4b6594c
new flow
Browse files
.github/workflows/build_documentation.yml
CHANGED
|
@@ -9,7 +9,7 @@ on:
|
|
| 9 |
|
| 10 |
jobs:
|
| 11 |
build:
|
| 12 |
-
uses: huggingface/doc-builder/.github/workflows/build_main_documentation.yml@
|
| 13 |
with:
|
| 14 |
commit_sha: ${{ github.sha }}
|
| 15 |
package: competitions
|
|
|
|
| 9 |
|
| 10 |
jobs:
|
| 11 |
build:
|
| 12 |
+
uses: huggingface/doc-builder/.github/workflows/build_main_documentation.yml@use_py_310
|
| 13 |
with:
|
| 14 |
commit_sha: ${{ github.sha }}
|
| 15 |
package: competitions
|
.github/workflows/build_pr_documentation.yml
CHANGED
|
@@ -9,7 +9,7 @@ concurrency:
|
|
| 9 |
|
| 10 |
jobs:
|
| 11 |
build:
|
| 12 |
-
uses: huggingface/doc-builder/.github/workflows/build_pr_documentation.yml@
|
| 13 |
with:
|
| 14 |
commit_sha: ${{ github.event.pull_request.head.sha }}
|
| 15 |
pr_number: ${{ github.event.number }}
|
|
|
|
| 9 |
|
| 10 |
jobs:
|
| 11 |
build:
|
| 12 |
+
uses: huggingface/doc-builder/.github/workflows/build_pr_documentation.yml@use_py_310
|
| 13 |
with:
|
| 14 |
commit_sha: ${{ github.event.pull_request.head.sha }}
|
| 15 |
pr_number: ${{ github.event.number }}
|
requirements.txt
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
gradio==4.12.0
|
| 2 |
joblib==1.3.2
|
| 3 |
loguru==0.7.2
|
| 4 |
-
pandas==2.
|
| 5 |
huggingface_hub==0.20.1
|
| 6 |
tabulate==0.9.0
|
| 7 |
markdown==3.5.1
|
|
|
|
| 1 |
gradio==4.12.0
|
| 2 |
joblib==1.3.2
|
| 3 |
loguru==0.7.2
|
| 4 |
+
pandas==2.1.4
|
| 5 |
huggingface_hub==0.20.1
|
| 6 |
tabulate==0.9.0
|
| 7 |
markdown==3.5.1
|
setup.py
CHANGED
|
@@ -50,14 +50,14 @@ setup(
|
|
| 50 |
entry_points={"console_scripts": ["competitions=competitions.cli.competitions:main"]},
|
| 51 |
install_requires=INSTALL_REQUIRES,
|
| 52 |
extras_require=EXTRAS_REQUIRE,
|
| 53 |
-
python_requires=">=3.
|
| 54 |
classifiers=[
|
| 55 |
"Intended Audience :: Developers",
|
| 56 |
"Intended Audience :: Education",
|
| 57 |
"Intended Audience :: Science/Research",
|
| 58 |
"License :: OSI Approved :: Apache Software License",
|
| 59 |
"Operating System :: OS Independent",
|
| 60 |
-
"Programming Language :: Python :: 3.
|
| 61 |
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
| 62 |
],
|
| 63 |
keywords="huggingface competitions machine learning ai nlp",
|
|
|
|
| 50 |
entry_points={"console_scripts": ["competitions=competitions.cli.competitions:main"]},
|
| 51 |
install_requires=INSTALL_REQUIRES,
|
| 52 |
extras_require=EXTRAS_REQUIRE,
|
| 53 |
+
python_requires=">=3.10",
|
| 54 |
classifiers=[
|
| 55 |
"Intended Audience :: Developers",
|
| 56 |
"Intended Audience :: Education",
|
| 57 |
"Intended Audience :: Science/Research",
|
| 58 |
"License :: OSI Approved :: Apache Software License",
|
| 59 |
"Operating System :: OS Independent",
|
| 60 |
+
"Programming Language :: Python :: 3.10",
|
| 61 |
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
| 62 |
],
|
| 63 |
keywords="huggingface competitions machine learning ai nlp",
|