Skip to content

Commit

Permalink
bump python >= 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Clément Chadebec committed Oct 22, 2023
1 parent ca203ff commit b93f3d2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
os: [ubuntu-latest]
env:
OS: ${{ matrix.os }}
PYTHON: '3.9'
PYTHON: '3.11'
steps:
- uses: actions/checkout@main
- name: Setup Python
uses: actions/setup-python@main
with:
python-version: 3.9
python-version: 3.11
- name: Generate coverage report
run: |
pip install .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests_bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
env:
OS: ${{ matrix.os }}
PYTHON: '3.9'
PYTHON: '3.11'
steps:
- uses: actions/checkout@main
- name: Setup Python
uses: actions/setup-python@main
with:
python-version: 3.9
python-version: 3.11
- name: Run tests
run: |
pip install .
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
Expand All @@ -38,5 +38,5 @@
"dataclasses>=0.6",
],
extras_require={':python_version == "3.7.*"': ["pickle5"]},
python_requires=">=3.7",
python_requires=">=3.9",
)

0 comments on commit b93f3d2

Please sign in to comment.