Skip to content

Commit

Permalink
Explicitly prevent Python 3.12
Browse files Browse the repository at this point in the history
To discuss: If we don't support 3.12, maybe we should enforce this here in `pyproject.toml`?

Source: <#441 (comment)>

I'm not convinced that this is the right move since it might slightly hinder testing. But if we are explicit, then this seems to me like the correct place for it.
  • Loading branch information
maresb committed Oct 9, 2023
1 parent 36df379 commit 2028963
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 @@ -12,7 +12,7 @@ name = "pytensor"
dynamic = [
'version'
]
requires-python = ">=3.9"
requires-python = ">=3.9,<3.12"
authors = [
{name = "pymc-devs", email = "pymc.devs@gmail.com"}
]
Expand Down

0 comments on commit 2028963

Please sign in to comment.