Skip to content

Commit

Permalink
Bump supported python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
apaleyes committed Apr 28, 2024
1 parent fbf4a9c commit 6345351
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.9, 3.10, 3.11]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -45,10 +45,10 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.7
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: 3.10
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
include_package_data=True,
install_requires=requires,
extras_require={"benchmarking": ["matplotlib"]},
python_requires=">=3",
python_requires=">=3.9",
license="Apache License 2.0",
classifiers=(
# https://pypi.org/pypi?%3Aaction=list_classifiers
Expand All @@ -40,9 +40,6 @@
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
Expand Down

0 comments on commit 6345351

Please sign in to comment.