Skip to content

Commit 9db5e75

Browse files
authored
Merge pull request #812 from google/py-python3.13
Mark support for python 3.13 and add testing
2 parents e417efc + 08ca7a1 commit 9db5e75

File tree

7 files changed

+13
-7
lines changed

7 files changed

+13
-7
lines changed

.github/workflows/python-build-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
# We want to know in which exact situation the tests fail
7474
fail-fast: false
7575
matrix:
76-
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
76+
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
7777
platform:
7878
- runner: ubuntu-latest
7979
target: x86_64
@@ -151,7 +151,7 @@ jobs:
151151
# We want to know in which exact situation the tests fail
152152
fail-fast: false
153153
matrix:
154-
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
154+
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
155155
platform:
156156
- runner: ubuntu-latest
157157
target: x86_64
@@ -210,7 +210,7 @@ jobs:
210210
# We want to know in which exact situation the tests fail
211211
fail-fast: false
212212
matrix:
213-
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
213+
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
214214
platform:
215215
- runner: ubuntu-latest
216216
target: x86_64

.github/workflows/python-test-published-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
unit-testing:
2121
strategy:
2222
matrix:
23-
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
23+
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
2424
os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
2525
runs-on: ${{ matrix.os }}
2626
steps:

.github/workflows/python-test-published-rc-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
unit-testing:
2121
strategy:
2222
matrix:
23-
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
23+
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
2424
os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
2525
runs-on: ${{ matrix.os }}
2626
steps:

.github/workflows/python-test-suite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
unit-testing:
2323
strategy:
2424
matrix:
25-
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
25+
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
2626
os: [ "ubuntu-latest", "macos-latest" ]
2727
runs-on: ${{ matrix.os }}
2828
steps:

python/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ should be considered as a major (and thus potentially breaking) change. See
1010
semver guidelines for more details about this.
1111

1212

13+
## [Unreleased]
14+
15+
- Mark python 3.13 as supported.
16+
17+
1318
## [0.6.1] - 2025-03-19
1419

1520
### Overview

python/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.10",
2323
"Programming Language :: Python :: 3.11",
2424
"Programming Language :: Python :: 3.12",
25+
"Programming Language :: Python :: 3.13",
2526
"Operating System :: MacOS",
2627
"Operating System :: Microsoft :: Windows",
2728
"Operating System :: Unix",

python/src/magika/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515

16-
__version__ = "0.6.1"
16+
__version__ = "0.6.2-dev"
1717

1818

1919
import dotenv

0 commit comments

Comments
 (0)