Skip to content

Commit

Permalink
Merge branch 'master' into support-numpy-2
Browse files Browse the repository at this point in the history
  • Loading branch information
sjperkins committed Oct 29, 2024
2 parents 75fbda1 + bda8d0b commit eaed9a4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ 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 }}
uses: actions/setup-python@v5.2.0
uses: actions/setup-python@v5.3.0
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
steps:
- name: Set up Python 3.10
uses: actions/setup-python@v5.2.0
uses: actions/setup-python@v5.3.0
with:
python-version: '3.10'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-python@v5.2.0
- uses: actions/setup-python@v5.3.0
with:
python-version: 3.11
- uses: pre-commit/[email protected]
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 >= 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 eaed9a4

Please sign in to comment.