Skip to content

Commit

Permalink
only use python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
haileyhoyat authored Sep 21, 2023
1 parent e3a1f9b commit 3948bdb
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.9]

steps:
- uses: actions/checkout@v1
Expand All @@ -28,14 +28,14 @@ jobs:
- name: Install Pipenv
uses: dschep/install-pipenv-action@v1

- name: Cache Python dependencies
uses: actions/cache@v1
with:
path: .venv
key: pip-${{ matrix.python-version }}-${{ hashFiles('**/Pipfile.lock') }}
restore-keys: |
pip-${{ matrix.python-version }}-
pip-
# - name: Cache Python dependencies
# uses: actions/cache@v1
# with:
# path: .venv
# key: pip-${{ matrix.python-version }}-${{ hashFiles('**/Pipfile.lock') }}
# restore-keys: |
# pip-${{ matrix.python-version }}-
# pip-

- name: Install dependencies
run: pipenv sync --dev
Expand Down

0 comments on commit 3948bdb

Please sign in to comment.