Skip to content

Commit

Permalink
Specify Python version in Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
acabal committed Oct 15, 2024
1 parent 35d971c commit a8f0a71
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ python3 -m pip install --user pipx
python3 -m pipx ensurepath

# Install the toolset.
pipx install standardebooks
pipx install --python=3.12 --fetch-missing-python standardebooks
```

### Optional: Install shell completions
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ def _get_version() -> str:
# THE ONLY PERSON WHO MAY EDIT THESE IS THE EDITOR-IN-CHIEF.
#
# Packaging and dependencies in Python are complex and fragile.
# Well-meaning attempts at upgrading packages or messing with pinned dependencies
# often end up breaking the entire install.
# This toolset targets a specific version of Python, and libraries are pinned to specific
# versions to prevent surprise breakage. Don't edit this!
# Well-meaning attempts at upgrading packages or messing with pinned
# dependencies often end up breaking the entire install.
# This toolset targets a specific version of Python, and libraries are
# pinned to specific versions to prevent surprise breakage. Don't edit this!
############################################################
python_requires=">=3.10.12,<=3.12.4",
python_requires=">=3.10.12,<=3.12",
install_requires=[
"cairosvg==2.7.1",
"chardet==5.2.0",
Expand Down

0 comments on commit a8f0a71

Please sign in to comment.