Skip to content

Commit

Permalink
Merge pull request #102 from Kai-Striega/enh/version-updates
Browse files Browse the repository at this point in the history
REL: Update minimum required versions
  • Loading branch information
Kai-Striega authored Mar 14, 2024
2 parents 135dab4 + 3f441d1 commit b7a4dd9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
11 changes: 5 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "numpy-financial"
version = "1.1.0.dev0"
version = "2.0.0"
description = "Simple financial functions"
license = "BSD-3-Clause"
authors = ["Travis E. Oliphant et al."]
Expand All @@ -21,7 +21,6 @@ classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -38,11 +37,11 @@ classifiers = [
packages = [{include = "numpy_financial"}]

[tool.poetry.dependencies]
python = "^3.9"
python = "^3.10"
numpy = "^1.23"

[tool.poetry.group.test.dependencies]
pytest = "^7.4"
pytest = "^8.0"


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


[tool.poetry.group.lint.dependencies]
ruff = "^0.1.6"
ruff = "^0.3"


[tool.poetry.group.bench.dependencies]
asv = "^0.6.1"
asv = "^0.6"

0 comments on commit b7a4dd9

Please sign in to comment.