Skip to content

Commit

Permalink
Bump Python version and use virtualenv extra
Browse files Browse the repository at this point in the history
  • Loading branch information
agriyakhetarpal committed Sep 29, 2023
1 parent c06d7ec commit 9365bfa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/benchmark_on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.11

- name: Install Linux system dependencies
run: |
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Install python dependencies
run: |
python -m pip install --upgrade pip wheel setuptools virtualenv wget cmake casadi numpy virtualenv packaging
python -m pip install asv
python -m pip install asv[virtualenv]
- name: Install SuiteSparse and SUNDIALS
run: python scripts/install_KLU_Sundials.py
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/periodic_benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Python 3.8
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.11

- name: Install Linux system dependencies
run: |
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Install python dependencies
run: |
python -m pip install --upgrade pip wheel setuptools virtualenv wget cmake casadi numpy virtualenv packaging
python -m pip install asv
python -m pip install asv[virtualenv]
- name: Install SuiteSparse and SUNDIALS
run: python scripts/install_KLU_Sundials.py
Expand Down

0 comments on commit 9365bfa

Please sign in to comment.