Skip to content

Commit

Permalink
Deprecate Python 3.9 support
Browse files Browse the repository at this point in the history
  • Loading branch information
sjperkins committed Oct 29, 2024
1 parent 7b1526f commit 71ff6a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12"]

steps:
- name: Set up Python ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
description="Radio Astronomy Building Blocks",
extras_require=extras_require,
Expand All @@ -77,7 +77,7 @@
keywords="codex-africanus",
name="codex-africanus",
packages=find_packages(),
python_requires=">=3.9",
python_requires=">=3.10",
setup_requires=setup_requirements,
test_suite="tests",
tests_require=test_requirements,
Expand Down

0 comments on commit 71ff6a8

Please sign in to comment.