Skip to content

Commit

Permalink
upgrade python version
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelJanas committed Nov 6, 2023
1 parent e389749 commit 9c6fd42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8' # Specify the Python version you need
python-version: '3.10' # Specify the Python version you need

- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install -r requirements.txt
- name: Test with pytest
run: |
Expand Down

0 comments on commit 9c6fd42

Please sign in to comment.