Skip to content

Commit

Permalink
Drop Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Armavica committed Jun 10, 2024
1 parent 35965f7 commit a72682d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

* Upgraded PyO3 to v0.21.2.
* Dropped support for Python 3.9, according to the SPEC-0 schedule.

## [0.6.1] -- 2023-10-05

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "A fast stochastic simulator for chemical reaction networks"
keywords = ["gillespie-algorithm", "systems-biology", "stochastic", "scientific-computing"]

[dependencies]
pyo3 = { version = "0.21.2", features = ["extension-module", "abi3-py39"] }
pyo3 = { version = "0.21.2", features = ["extension-module", "abi3-py310"] }
rand = { version = "0.8.5", features = ["small_rng"] }
rand_distr = "0.4.3"

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies = ["xarray >= 2023.01"]

[tool.ruff]
extend-exclude = ["benches/*"]
target-version = "py39"
target-version = "py310"

[tool.ruff.lint]
select = ["ALL"]
Expand Down

0 comments on commit a72682d

Please sign in to comment.