Skip to content

Commit

Permalink
Set minimum version of Python to 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldk committed Apr 12, 2024
1 parent 441a324 commit cc8a8bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
python -m pip install isort -c requirements.txt
python -m isort curated_transformers examples --check
- name: flake8
run: |
python -m pip install flake8==5.0.4
Expand All @@ -37,7 +37,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.11"]
python-version: ["3.9", "3.11"]
steps:
- uses: actions/checkout@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ long_description_content_type = text/markdown
[options]
zip_safe = true
include_package_data = true
python_requires = >=3.8
python_requires = >=3.9
install_requires =
catalogue>=2.0.4,<2.1.0
curated-tokenizers>=2.0.0.dev0,<3.0.0
Expand Down

0 comments on commit cc8a8bd

Please sign in to comment.