Skip to content

Commit

Permalink
Upgrade Python Version (3.12) (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
bh2smith authored Oct 29, 2023
1 parent e43f75f commit db7c315
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python 3.10
- uses: actions/checkout@v4
- name: Setup Python 3.12
uses: actions/setup-python@v3
with:
python-version: '3.10'
python-version: '3.12'
- name: Install Requirements
run:
pip install -r requirements.txt
Expand Down
17 changes: 11 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,15 @@ python-dotenv==1.0.0
requests==2.31.0
safe-cli==0.7.1
safe-eth-py==5.8.0
web3==6.10.0
web3==6.11.1
# Dev Deps.
types-requests==2.31.0.6
pytest==7.4.2
pylint==2.17.6
mypy==1.5.1
black==23.9.1
types-requests==2.31.0.10
pytest==7.4.3
pylint==3.0.2
mypy==1.6.1
black==23.10.1

# Python 3.12 stuffs.
aiohttp>=3.9.0b0
setuptools==68.2.2
types-setuptools==68.2.0.0
1 change: 0 additions & 1 deletion src/airdrop/encode.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Boilerplate code for encoding interactions with Airdrop Contract"""
from __future__ import annotations

from enum import Enum

Expand Down

0 comments on commit db7c315

Please sign in to comment.