Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
FIX: require Python 3.8 for uv backend
Browse files Browse the repository at this point in the history
  • Loading branch information
redeboer committed Mar 5, 2024
1 parent 8abd25c commit 1ae49fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ install_requires =
importlib-metadata; python_version <"3.8.0"
pip-tools >=6.2.0 # strip-extras and extras_require
toml
uv; python_version >="3.7.0"
uv; python_version >="3.8.0"
packages = find:
package_dir =
=src
Expand Down
2 changes: 1 addition & 1 deletion src/update_pip_constraints/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def main(argv: Optional[Sequence[str]] = None) -> int:
python_version = args.python_version
output_file = _form_constraint_file_path(python_version)
excludes: List[str] = []
if sys.version_info < (3, 7) or not __uses_pyproject():
if sys.version_info < (3, 8) or not __uses_pyproject():
excludes = [
"pip",
"setuptools",
Expand Down

0 comments on commit 1ae49fc

Please sign in to comment.