Skip to content

Commit ca6aded

Browse files
committed
Bump version and start testing on Python 3.13
1 parent b2f1bf0 commit ca6aded

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1717
- name: Set up Python
18-
uses: actions/setup-python@v1
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: '3.x'
2121
- name: Install build dependencies

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
test:
1010
strategy:
1111
matrix:
12-
python: ['3.10', '3.11', '3.12']
12+
python: ['3.10', '3.11', '3.12', '3.13']
1313
platform: [ubuntu-latest, macos-latest, windows-latest]
1414
runs-on: ${{ matrix.platform }}
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
- name: Set up Python ${{ matrix.python }}
19-
uses: actions/setup-python@v3
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: ${{ matrix.python }}
2222
- name: Install test dependencies

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ name = "jsrm" # Required
1717
#
1818
# For a discussion on single-sourcing the version, see
1919
# https://packaging.python.org/guides/single-sourcing-package-version/
20-
version = "0.0.10" # Required
20+
version = "0.0.11" # Required
2121

2222
# This is a one-line description or tagline of what your project does. This
2323
# corresponds to the "Summary" metadata field:
@@ -88,10 +88,10 @@ classifiers = [ # Optional
8888
# that you indicate you support Python 3. These classifiers are *not*
8989
# checked by "pip install". See instead "python_requires" below.
9090
"Programming Language :: Python :: 3",
91-
"Programming Language :: Python :: 3.9",
9291
"Programming Language :: Python :: 3.10",
9392
"Programming Language :: Python :: 3.11",
9493
"Programming Language :: Python :: 3.12",
94+
"Programming Language :: Python :: 3.13",
9595
"Programming Language :: Python :: 3 :: Only",
9696
]
9797

0 commit comments

Comments
 (0)