Skip to content

Commit d79ac90

Browse files
authored
Update supported Python versions (#121)
1 parent 090700d commit d79ac90

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/upload-codecov.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
17+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1818
steps:
1919
- uses: actions/setup-python@v4
2020
with:
@@ -26,6 +26,6 @@ jobs:
2626
tox -- --cov tensortrax --cov-report xml --cov-report term
2727
- name: Upload coverage to Codecov
2828
uses: codecov/codecov-action@v4
29-
if: ${{ matrix.python-version == '3.12' }}
29+
if: ${{ matrix.python-version == '3.13' }}
3030
env:
3131
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ authors = [
1414
{email = "a.dutzler@gmail.com"},
1515

1616
]
17-
requires-python = ">=3.8"
17+
requires-python = ">=3.9"
1818
license = {file = "LICENSE"}
1919
keywords = [
2020
"python",
@@ -34,11 +34,11 @@ classifiers = [
3434
"Operating System :: OS Independent",
3535
"Programming Language :: Python",
3636
"Programming Language :: Python :: 3",
37-
"Programming Language :: Python :: 3.8",
3837
"Programming Language :: Python :: 3.9",
3938
"Programming Language :: Python :: 3.10",
4039
"Programming Language :: Python :: 3.11",
4140
"Programming Language :: Python :: 3.12",
41+
"Programming Language :: Python :: 3.13",
4242
"Topic :: Scientific/Engineering",
4343
"Topic :: Scientific/Engineering :: Mathematics",
4444
"Topic :: Utilities"

src/tensortrax/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
tensorTRAX: Math on (Hyper-Dual) Tensors with Trailing Axes.
33
"""
44

5-
__version__ = "0.26.0"
5+
__version__ = "0.26.1"

0 commit comments

Comments
 (0)