Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for Python 3.8 and 3.9 #2514

Merged
merged 1 commit into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you remove 3.8 and 3.9 here?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These have been forgotten

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
Loading