Skip to content

Commit

Permalink
Update python requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
sylveon committed Aug 5, 2020
1 parent 154d035 commit ed8f7f4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

# Installation

Install Python 3.6 or higher:
Install Python 3.7 or higher:
- [For Mac](https://www.python.org/downloads/mac-osx/)
- For Windows: [desktop](https://www.python.org/downloads/windows/) or [Microsoft Store](https://www.microsoft.com/p/python-38/9mssztt1n39l)
- [For Ubuntu](https://askubuntu.com/a/865569)
Expand Down
2 changes: 1 addition & 1 deletion pokemonterminal/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3.6
#!/usr/bin/env python3.7
"""The main module that brings everything together."""

import os
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ def package_data(relpath, folders):
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",

"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6"
"Programming Language :: Python :: 3.7"
],

python_requires=">=3.6",
python_requires=">=3.7",
install_requires=(["psutil"] if sys.platform != "win32" else None)
)

0 comments on commit ed8f7f4

Please sign in to comment.