Skip to content

Commit

Permalink
Update pyproject.toml to meet poetry conventions
Browse files Browse the repository at this point in the history
in python-poetry ~=3.9 is interpreted as >=3.9<3.10 [2], though it should be >=3.9,<4.0
[2] https://python-poetry.org/docs/dependency-specification/
  • Loading branch information
joharkit authored and patrick-kidger committed Jan 28, 2025
1 parent 5366e65 commit 54e9e77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "diffrax"
version = "0.6.2"
description = "GPU+autodiff-capable ODE/SDE/CDE solvers written in JAX."
readme = "README.md"
requires-python ="~=3.9"
requires-python =">=3.9,<4.0"
license = {file = "LICENSE"}
authors = [
{name = "Patrick Kidger", email = "contact@kidger.site"},
Expand Down

0 comments on commit 54e9e77

Please sign in to comment.