Skip to content

Commit

Permalink
Upgrade python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
aarmey committed Sep 28, 2024
1 parent 78a45f6 commit 8a17087
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
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@v5
with:
python-version: '3.10'
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ jobs:
fail-fast: false
matrix:
BACKEND: ['numpy', 'pytorch', 'paddle']
python-version: ['3.12']
python-version: ['3.13']
include:
- BACKEND: 'numpy'
python-version: '3.8'
- BACKEND: 'numpy'
python-version: '3.9'
- BACKEND: 'numpy'
python-version: '3.10'
TENSORLY_TENALG_BACKEND: ['einsum']
- BACKEND: 'jax'
python-version: '3.12'
python-version: '3.13'
TENSORLY_TENALG_BACKEND: ['einsum']
- BACKEND: 'tensorflow'
python-version: '3.12'
python-version: '3.13'
TENSORLY_TENALG_BACKEND: ['einsum']

steps:
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
TENSORLY_BACKEND=${{matrix.BACKEND}} pytest -vv --cov tensorly --cov-report xml --durations=10 tensorly
- name: Check coverage with CodeCov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
verbose: true

0 comments on commit 8a17087

Please sign in to comment.