From 2d4ceaafde68f80451cd13a9e95a76e6cf191658 Mon Sep 17 00:00:00 2001 From: Benjamin Smith Date: Fri, 30 Sep 2022 12:03:53 +0200 Subject: [PATCH] Downgrade to Python 3.7 (#20) * downgrade to python 3.7 * update setup.cfg --- .github/workflows/pull-request.yaml | 12 ++++++------ setup.cfg | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 4bd2a61..c9cfd17 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -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 @@ -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 @@ -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 diff --git a/setup.cfg b/setup.cfg index 3e50dd7..e4962ee 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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