Skip to content

Commit

Permalink
Add support for Python 3.12 in scaffold template (#25251)
Browse files Browse the repository at this point in the history
It appears that Python 3.12 has been officially supported for months now
[#17350], but the scaffold template has not been updated yet. This
change increases the upper version bound in the template from <3.12 to
<3.13.
  • Loading branch information
agrueneberg authored Oct 14, 2024
1 parent 169d673 commit 4c00783
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "{{ code_location_name }}"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.8,<3.12"
requires-python = ">=3.8,<3.13"
dependencies = [
"dagster",
"dagster-cloud",
Expand Down

0 comments on commit 4c00783

Please sign in to comment.