Skip to content

Commit

Permalink
Update supported python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Jan 7, 2024
1 parent 7a44841 commit 46d5ce4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.10']
galaxy-branch: ['release_22.01', 'dev']
python-version: ['3.8', '3.11']
galaxy-branch: ['release_23.0', 'dev']
exclude:
# this results in lengthy and expensive numpy wheel builds
- python-version: '3.10'
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def get_var(var_name):
author_email="[email protected]",
license="MIT",
keywords="gravity galaxy",
python_requires=">=3.6",
python_requires=">=3.7",
install_requires=[
"Click",
"supervisor",
Expand All @@ -56,10 +56,10 @@ def get_var(var_name):
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"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",
],
zip_safe=False,
)

0 comments on commit 46d5ce4

Please sign in to comment.