Skip to content

Commit e99ed93

Browse files
committed
REV: Remove Python 3.12 dependency
The newest released numba version is 0.58.1. This version does not support Python 3.12. Since we are using it we also cannot support Python 3.12. This should be added once numba version 0.59 is released.
1 parent f58c8df commit e99ed93

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest, macos-latest, windows-latest]
11-
python-version: ["3.9", "3.10", "3.11", "3.12"]
11+
python-version: ["3.9", "3.10", "3.11"]
1212
steps:
1313
- uses: actions/checkout@v3
1414
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ classifiers = [
2424
"Programming Language :: Python :: 3.9",
2525
"Programming Language :: Python :: 3.10",
2626
"Programming Language :: Python :: 3.11",
27-
"Programming Language :: Python :: 3.12",
2827
"Programming Language :: Python :: 3 :: Only",
2928
"Topic :: Software Development",
3029
"Topic :: Office/Business :: Financial :: Accounting",
@@ -38,7 +37,7 @@ classifiers = [
3837
packages = [{include = "numpy_financial"}]
3938

4039
[tool.poetry.dependencies]
41-
python = "^3.9"
40+
python = "^3.9,<3.12"
4241
numpy = "^1.23"
4342

4443

0 commit comments

Comments
 (0)