Skip to content

Commit

Permalink
Update github actions python version
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmindset committed May 7, 2024
1 parent bdc3cd4 commit f9a359c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 49 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/insolver-pypi-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/insolver-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8", "3.9", '3.10']
python-version: ["3.8", "3.9", "3.10", "3.11"]
isDev:
- ${{ contains(github.ref, 'dev') }}
exclude:
Expand Down Expand Up @@ -47,9 +47,9 @@ jobs:
shell: bash
run: |
python -m pytest --cov=./ --cov-report=xml
- name: Code coverage with codecov on (ubuntu-latest & Python 3.8 & master)
- name: Code coverage with codecov on (ubuntu-latest & Python 3.10 & master)
if: |
(matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8' && github.ref == 'refs/heads/master')
(matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10' && github.ref == 'refs/heads/master')
uses: codecov/codecov-action@v3
with:
flags: unittests
Expand Down
45 changes: 0 additions & 45 deletions .github/workflows/python-app.yml

This file was deleted.

0 comments on commit f9a359c

Please sign in to comment.