Skip to content

Commit

Permalink
fix min python version in setup.py and README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ilius committed Mar 16, 2024
1 parent 044ebde commit 86583a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ But you can explicitly determine the user interface type using `--ui`

## Installation on Windows

- [Download and install Python](https://www.python.org/downloads/windows/) (3.9 or above)
- [Download and install Python](https://www.python.org/downloads/windows/) (3.10 or above)
- Open Start -> type Command -> right-click on Command Prompt -> Run as administrator
- To ensure you have `pip`, run: `python -m ensurepip --upgrade`
- To install, run: `pip install --upgrade pyglossary`
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def run(self):
setup(
name="pyglossary",
version=VERSION,
python_requires=">=3.9.0",
python_requires=">=3.10.0",
cmdclass={
"install": my_install,
},
Expand Down

0 comments on commit 86583a3

Please sign in to comment.