Skip to content

Commit

Permalink
Deprecate Python 3.9 support and test on 3.12 (#318)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjperkins authored Oct 29, 2024
1 parent 7a0dde3 commit bda8d0b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 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: 3 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
History
=======

X.Y.Z (YYYY-MM-DD)
0.3.8 (2024-09-29)
------------------
* Test on Python 3.12 (:pr:`318`)
* Deprecate Python 3.9 (:pr:`318`)
* Fix nvcc compilation (:pr:`316`)
* Workaround numba #5929 (:pr:`312`)
* Restrict NumPy to less than 2.0.0 (:pr:`313`)
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"decorator",
"numpy >= 1.14.0, != 1.15.3, < 2.0.0",
"numba >= 0.53.1",
"setuptools",
]

extras_require = {
Expand Down Expand Up @@ -63,9 +64,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 +78,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 bda8d0b

Please sign in to comment.