From e44b194d895c4e87d254b36d0033e8ee7f344446 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Fri, 22 Jan 2021 11:05:59 +0100 Subject: [PATCH] use system default python version --- .github/workflows/pythonpackage.yml | 4 ++-- Pipfile | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 796f717..c340372 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -13,7 +13,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3.7] + python-version: [3.6, 3.7, 3.8] steps: - uses: actions/checkout@v1 @@ -25,7 +25,7 @@ jobs: run: | python -m pip install --upgrade pip pip install pipenv - pipenv install --dev --system + pipenv install --dev --system - name: Lint with flake8 run: | make flake8 diff --git a/Pipfile b/Pipfile index 2096b1b..e756a25 100644 --- a/Pipfile +++ b/Pipfile @@ -8,9 +8,6 @@ url = "https://www.piwheels.org/simple" name = "piwheels" verify_ssl = true -[requires] -python_version = "3.7" - [dev-packages] "flake8" = "*" qrcode = "*"