Skip to content

Commit

Permalink
Update requires-python version to ">=3.10,<=3.11" (#6013)
Browse files Browse the repository at this point in the history
This commit modifies the requires-python constraint in the pyproject.toml file to ensure that the Python version used for this project remains between 3.10 and 3.11. By locking the Python version in this range, we guarantee that the generated lock file will be based on Python 3.10, which aligns with the production setup requirements. This change helps maintain consistency and stability across environments and ensures compatibility with the selected Python version.
  • Loading branch information
Aadesh-Baral authored Aug 4, 2023
1 parent 977133f commit 3d62eac
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 31 deletions.
47 changes: 17 additions & 30 deletions pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies = [
# Dependencies used by hotosm.org for production deployments
"newrelic==8.8.0",
]
requires-python = ">=3.9,<=3.11"
requires-python = ">=3.10,<=3.11"
readme = "README.md"
license = { text = "BSD-2-Clause" }

Expand Down

0 comments on commit 3d62eac

Please sign in to comment.