Browse Source

fix: revert default python version to 3.7 in Pipfile, closes #85

But tests will be run on both 3.7 and 3.8 as we want to support >= 3.7
aiosqlite
Eneko Illarramendi 4 years ago
parent
commit
6b33f150c6
  1. 2
      .github/workflows/tests.yml
  2. 2
      Dockerfile
  3. 2
      Pipfile
  4. 1
      requirements.txt

2
.github/workflows/tests.yml

@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
python-version: [3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}

2
Dockerfile

@ -1,4 +1,4 @@
FROM python:3.8-slim
FROM python:3.7-slim
WORKDIR /app
COPY requirements.txt /app/

2
Pipfile

@ -4,7 +4,7 @@ url = "https://pypi.org/simple"
verify_ssl = true
[requires]
python_version = "3.8"
python_version = "3.7"
[packages]
bitstring = "*"

1
requirements.txt

@ -21,6 +21,7 @@ pyscss==1.3.7
requests==2.24.0
shortuuid==1.0.1
six==1.15.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
typing-extensions==3.7.4.3; python_version < '3.8'
urllib3==1.25.10; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'
webassets==2.0
werkzeug==1.0.1; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'

Loading…
Cancel
Save