Skip to content

Commit

Permalink
Merge pull request #2514 from CyclingNinja/remove_py39
Browse files Browse the repository at this point in the history
Drop support for Python 3.8 and 3.9
  • Loading branch information
astrofrog authored Sep 17, 2024
2 parents e9df453 + 3ff6f46 commit 7481caf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/ci_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,29 +25,25 @@ jobs:
coverage: codecov

envs: |
# Linux builds
- linux: py38-test-lts-all
- linux: py39-test
# Linux build
- linux: py310-test-all
- linux: py311-test
- linux: py312-test-all
# Documentation build
- linux: py38-docs
- linux: py310-docs
coverage: false
- macos: py311-docs
coverage: false
# Test a few configurations on macOS
- macos: py38-test-all
- macos: py39-test
- macos: py310-test-all
- macos: py311-test
- macos: py312-test-all
# Test some configurations on Windows
- windows: py38-test
- windows: py39-test
- windows: py310-test
- windows: py311-test-all
# Test against latest developer versions of some packages
- linux: py310-test-dev-all
Expand Down
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering :: Visualization
License :: OSI Approved :: BSD License
description = Core library for the glue multidimensional data visualization project
Expand All @@ -19,7 +21,7 @@ long_description = file: README.rst
[options]
zip_safe = False
packages = find:
python_requires = >=3.8
python_requires = >=3.10
setup_requires = setuptools_scm
install_requires =
numpy>=1.17
Expand Down

0 comments on commit 7481caf

Please sign in to comment.