Skip to content

Commit

Permalink
feat: Python 3.11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
tserg authored Jul 12, 2023
2 parents 6a6a639 + 2cb9676 commit 29853f0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
uses: actions/checkout@v2

- name: Python setup
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'

- name: Install Dependencies
run: pip install .[lint]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
uses: actions/checkout@v2

- name: Python setup
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'

- name: Install Dependencies
run: pip install .[test]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author_email="",
url="https://github.com/tserg/medusa",
keywords=["ethereum", "vyper", "analyzer"],
python_requires=">=3.10,<3.11",
python_requires=">=3.10,<3.12",
packages=find_packages(where=".", include=["medusa*"]),
install_requires=["vyper==0.3.9"],
extras_require=extras_require,
Expand Down

0 comments on commit 29853f0

Please sign in to comment.