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
This commit is contained in:
Eneko Illarramendi 2020-09-04 21:18:22 +02:00
parent 8b7028d728
commit 6b33f150c6
4 changed files with 4 additions and 3 deletions

View File

@ -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 }}

View File

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

View File

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

View File

@ -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'