Skip to content

Commit a065edd

Browse files
authored
Merge pull request #1 from jasongi/python3.13
support python 3.13
2 parents 9b06bab + a7f91ae commit a065edd

5 files changed

Lines changed: 9 additions & 6 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
- uses: actions/checkout@v4
1616
- uses: actions/setup-python@v5
1717
with:
18-
python-version: 3.12
18+
python-version: 3.13
1919
- uses: pre-commit/action@v3.0.1
2020
test:
2121
runs-on: ubuntu-latest
2222
strategy:
2323
matrix:
24-
python-version: ['3.9', '3.10', '3.11', '3.12']
24+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
2525
steps:
2626
- uses: actions/checkout@v4
2727
- uses: actions/setup-python@v5
@@ -39,7 +39,7 @@ jobs:
3939
- uses: actions/checkout@v4
4040
- uses: actions/setup-python@v5
4141
with:
42-
python-version: 3.12
42+
python-version: 3.13
4343
- name: Install tox
4444
run: pip install -r requirements-dev.txt
4545
- name: Test

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v4
1212
- uses: actions/setup-python@v5
1313
with:
14-
python-version: 3.12
14+
python-version: 3.13
1515
- run: pip install build
1616
- run: python3 -m build
1717
- name: Store the distribution packages

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
default_language_version:
2-
python: python3.12
2+
python: python3.13
33
repos:
44
- repo: https://github.com/pre-commit/pre-commit-hooks
55
rev: v4.5.0

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Changelog
2+
## 0.1.3 2024-12-26
3+
- support python 3.13
24

35
## 0.1.2 2024-03-24
46
- explicitly export uncollect_if

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77
[project]
88
name = "pytest-uncollect-if"
99
description = "A plugin to uncollect pytests tests rather than using skipif"
10-
version = "0.1.2"
10+
version = "0.1.3"
1111
readme = "README.rst"
1212
requires-python = ">=3.9"
1313
authors = [
@@ -28,6 +28,7 @@ classifiers = [
2828
"Programming Language :: Python :: 3.10",
2929
"Programming Language :: Python :: 3.11",
3030
"Programming Language :: Python :: 3.12",
31+
"Programming Language :: Python :: 3.13",
3132
"Programming Language :: Python :: 3 :: Only",
3233
"Programming Language :: Python :: Implementation :: CPython",
3334
"Programming Language :: Python :: Implementation :: PyPy",

0 commit comments

Comments
 (0)