Skip to content

Commit

Permalink
update github actions to run on python=3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwest-uw committed Sep 27, 2024
1 parent b1433bf commit 6008ef7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:

- uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9

- name: Install package inside virtual environment
run: |
python3.8 -m venv venv
python3.9 -m venv venv
source venv/bin/activate
python -m pip install -U pip setuptools
python -m pip install .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9

- name: Run Tox
run: pipx run tox -e py38 -v

0 comments on commit 6008ef7

Please sign in to comment.