summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Le Marec - Pasquet <kiorky@cryptelium.net>2024-11-27 22:04:05 +0100
committerMathieu Le Marec - Pasquet <kiorky@cryptelium.net>2023-04-07 15:47:40 +0200
commit4af0bd8e845e5981cba70347fab25049f8b15f2a (patch)
treedf829148142e8700d31617650fd9328f07b312f0
parent6b9d37b6f494ab67769447ad41e27af558756206 (diff)
downloadcroniter-4af0bd8e845e5981cba70347fab25049f8b15f2a.tar.gz
update gha
-rw-r--r--.github/workflows/cicd.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml
index 7314215..a7aa6bb 100644
--- a/.github/workflows/cicd.yml
+++ b/.github/workflows/cicd.yml
@@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
+ python-version: [3.8, 3.9, "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
@@ -15,8 +15,8 @@ jobs:
- name: Install dependencies
run: |
set -ex
- python -m pip install --upgrade pip
- pip install -r requirements/test.txt
+ python -m pip install --upgrade --use-pep517 pip
+ pip install --use-pep517 -r requirements/test.txt
- name: Test with pytest
run: |
pyver=$(python --version 2>&1 | awk '{print substr($2, 0, 4)}' | awk '{ sub(/[ \t]+$/, ""); print }');