Skip to content

Commit

Permalink
Downgrade to Python 3.7 (#20)
Browse files Browse the repository at this point in the history
* downgrade to python 3.7

* update setup.cfg
  • Loading branch information
bh2smith authored Sep 30, 2022
1 parent 0e6693f commit 2d4ceaa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python 3.8
- name: Setup Python 3.7
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: '3.7'
- name: Install Requirements
run: pip install -r requirements/dev.txt
- name: Pylint
Expand All @@ -24,10 +24,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python 3.8
- name: Setup Python 3.7
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: '3.7'
- name: Install Requirements
run:
pip install -r requirements/dev.txt
Expand All @@ -37,10 +37,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python 3.8
- name: Setup Python 3.7
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: '3.7'
- name: Install Requirements
run:
pip install -r requirements/dev.txt
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ install_requires =
python-dateutil==2.8.2
requests==2.28.1
web3==5.30.0
python_requires = >=3.8
python_requires = >=3.7
setup_requires =
setuptools_scm

Expand Down

0 comments on commit 2d4ceaa

Please sign in to comment.