Skip to content

Commit b7a4dd9

Browse files
authored
Merge pull request #102 from Kai-Striega/enh/version-updates
REL: Update minimum required versions
2 parents 135dab4 + 3f441d1 commit b7a4dd9

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
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.10", "3.11", "3.12"]
1212
steps:
1313
- uses: actions/checkout@v3
1414
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
55

66
[tool.poetry]
77
name = "numpy-financial"
8-
version = "1.1.0.dev0"
8+
version = "2.0.0"
99
description = "Simple financial functions"
1010
license = "BSD-3-Clause"
1111
authors = ["Travis E. Oliphant et al."]
@@ -21,7 +21,6 @@ classifiers = [
2121
"License :: OSI Approved :: BSD License",
2222
"Programming Language :: Python",
2323
"Programming Language :: Python :: 3",
24-
"Programming Language :: Python :: 3.9",
2524
"Programming Language :: Python :: 3.10",
2625
"Programming Language :: Python :: 3.11",
2726
"Programming Language :: Python :: 3.12",
@@ -38,11 +37,11 @@ classifiers = [
3837
packages = [{include = "numpy_financial"}]
3938

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

4443
[tool.poetry.group.test.dependencies]
45-
pytest = "^7.4"
44+
pytest = "^8.0"
4645

4746

4847
[tool.poetry.group.docs.dependencies]
@@ -53,9 +52,9 @@ pydata-sphinx-theme = "^0.14.3"
5352

5453

5554
[tool.poetry.group.lint.dependencies]
56-
ruff = "^0.1.6"
55+
ruff = "^0.3"
5756

5857

5958
[tool.poetry.group.bench.dependencies]
60-
asv = "^0.6.1"
59+
asv = "^0.6"
6160

0 commit comments

Comments
 (0)