Skip to content

Commit 823599f

Browse files
committed
Merge branch 'main' into v0.11-release
2 parents 20b4bfb + ab17148 commit 823599f

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

.github/workflows/python-tests.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,24 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
python-version: ["3.7", "3.10"]
21+
python-version: ["3.7", "3.11"]
2222
test_name:
2323
[
2424
"Repository only",
2525
"Everything else",
26-
"fastai",
2726
"torch",
28-
"tensorflow",
2927
]
3028
include:
31-
- python-version: "3.10" # LFS not ran on 3.7
29+
- python-version: "3.11" # LFS not ran on 3.7
3230
test_name: "lfs"
31+
- python-version: "3.7"
32+
test_name: "fastai" # fastai not supported on 3.11 -> test it on 3.10
33+
- python-version: "3.10"
34+
test_name: "fastai"
35+
- python-version: "3.7"
36+
test_name: "tensorflow" # Tensorflow not supported on 3.11 -> test it on 3.10
37+
- python-version: "3.10"
38+
test_name: "tensorflow"
3339

3440
steps:
3541
- uses: actions/checkout@v2

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<a href="https://github.com/psf/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
44
<a href="https://codecov.io/gh/huggingface/huggingface_hub"><img alt="Code coverage" src="https://codecov.io/gh/huggingface/huggingface_hub/branch/main/graph/badge.svg?token=RXP95LE2XL"></a>
55
<a href="https://github.com/huggingface/huggingface_hub/releases"><img alt="GitHub release" src="https://img.shields.io/github/release/huggingface/huggingface_hub.svg"></a>
6+
<a href="https://github.com/huggingface/huggingface_hub"><img alt="Documentation" src="https://img.shields.io/pypi/pyversions/huggingface_hub.svg"></a>
67
<a href="https://huggingface.co/docs/huggingface_hub/index"><img alt="Documentation" src="https://img.shields.io/website/http/huggingface.co/docs/huggingface_hub/index.svg?down_color=red&down_message=offline&up_message=online&label=doc"></a>
78

89
## Welcome to the huggingface_hub library

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,12 @@ def get_version() -> str:
108108
"License :: OSI Approved :: Apache Software License",
109109
"Operating System :: OS Independent",
110110
"Programming Language :: Python :: 3",
111+
"Programming Language :: Python :: 3 :: Only",
112+
"Programming Language :: Python :: 3.7",
113+
"Programming Language :: Python :: 3.8",
114+
"Programming Language :: Python :: 3.9",
115+
"Programming Language :: Python :: 3.10",
116+
"Programming Language :: Python :: 3.11",
111117
"Topic :: Scientific/Engineering :: Artificial Intelligence",
112118
],
113119
include_package_data=True,

0 commit comments

Comments
 (0)