Skip to content

Commit

Permalink
test: Verify compatibility with python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
abelcheung committed Oct 15, 2024
1 parent b4623b4 commit 440995d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/full_check_inc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
uses: ./.github/workflows/typecheck_inc.yml
with:
gitref: ${{ inputs.gitref }}
Expand All @@ -32,6 +33,7 @@ jobs:
- '3.7'
- '3.10'
- '3.12'
- '3.13'
os:
- 'ubuntu-22.04'
- 'windows-2022'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
- '3.10'
- '3.11'
- '3.12'
- '3.13'

jobs:
tox:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
uses: ./.github/workflows/typecheck_inc.yml
with:
gitref: ${{ github.ref }}
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[![PyPI version](https://img.shields.io/pypi/v/iso3901.svg)](https://pypi.org/project/iso3901/)
![Supported Python](https://img.shields.io/python/required-version-toml?tomlFilePath=https%3A%2F%2Fgit.luolix.top%2FTagger-phile%2Fpy-iso3901%2Fraw%2Frefs%2Fheads%2Fmain%2Fpyproject.toml)
![Wheel](https://img.shields.io/pypi/wheel/iso3901.svg)

# py-iso3901
Structured parsing of ISRC ([International Standard Recording Code](https://isrc.ifpi.org/en/)) in python, as defined in ISO 3901:2019.

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Sound/Audio",
"Typing :: Typed",
]
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
min_version = 4.0
env_list = py3{7,8,9,10,11,12}
env_list = py3{7,8,9,10,11,12,13}

[gh-actions]
python =
Expand All @@ -10,6 +10,7 @@ python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313

[basic_dep]
deps =
Expand Down

0 comments on commit 440995d

Please sign in to comment.