Skip to content

Commit

Permalink
chore: Set 4.0 upper bound on Python
Browse files Browse the repository at this point in the history
  • Loading branch information
saattrupdan committed Aug 13, 2024
1 parent 1fee7db commit 43e397f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions {{cookiecutter.project_name}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license = {{'"MIT"' if cookiecutter.open_source == "y" else '"Proprietary"'}}
repository = "https://github.com/alexandrainst/{{cookiecutter.project_name}}"

[tool.poetry.dependencies]
python = ">={{ cookiecutter.python_version }}"
python = ">={{ cookiecutter.python_version }},<4.0"
hydra-core = "^{{ cookiecutter._hydra_version }}"

[tool.poetry.group.dev.dependencies]
Expand All @@ -36,7 +36,7 @@ readme = "README.md"
authors = [
{name = "{{cookiecutter.author_name}}", email = "{{cookiecutter.email}}"},
]
requires-python = ">={{ cookiecutter.python_version }}"
requires-python = ">={{ cookiecutter.python_version }},<4.0"
dependencies = [
"hydra-core=={{ cookiecutter._hydra_version }}",
]
Expand Down

0 comments on commit 43e397f

Please sign in to comment.