Skip to content

Commit

Permalink
Update with Python 3.11 support (#260)
Browse files Browse the repository at this point in the history
* Test python with 3.11

Test with python 3.11. Also remove python 3.7 since it is EOL https://www.python.org/downloads/

* Update setup.py
  • Loading branch information
andrewgy8 committed Sep 12, 2023
1 parent 4c6aa54 commit b5c750a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ def get_version(*file_paths):
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
entry_points={"console_scripts": ["rele-cli=rele.__main__:main"]},
)

0 comments on commit b5c750a

Please sign in to comment.