diff --git a/.github/workflows/full_check_inc.yml b/.github/workflows/full_check_inc.yml index b609824..481988c 100644 --- a/.github/workflows/full_check_inc.yml +++ b/.github/workflows/full_check_inc.yml @@ -19,6 +19,7 @@ jobs: - '3.10' - '3.11' - '3.12' + - '3.13' uses: ./.github/workflows/typecheck_inc.yml with: gitref: ${{ inputs.gitref }} @@ -32,6 +33,7 @@ jobs: - '3.7' - '3.10' - '3.12' + - '3.13' os: - 'ubuntu-22.04' - 'windows-2022' diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index cbea0bc..e085d0b 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -13,6 +13,7 @@ on: - '3.10' - '3.11' - '3.12' + - '3.13' jobs: tox: diff --git a/.github/workflows/typecheck.yml b/.github/workflows/typecheck.yml index 99514b1..1df4dd5 100644 --- a/.github/workflows/typecheck.yml +++ b/.github/workflows/typecheck.yml @@ -15,6 +15,7 @@ jobs: - '3.10' - '3.11' - '3.12' + - '3.13' uses: ./.github/workflows/typecheck_inc.yml with: gitref: ${{ github.ref }} diff --git a/README.md b/README.md index 1489b02..eef68ac 100644 --- a/README.md +++ b/README.md @@ -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%2Fgithub.com%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. diff --git a/pyproject.toml b/pyproject.toml index 70deb01..1398fcb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", ] diff --git a/tox.ini b/tox.ini index d69cea2..4f922ae 100644 --- a/tox.ini +++ b/tox.ini @@ -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 = @@ -10,6 +10,7 @@ python = 3.10: py310 3.11: py311 3.12: py312 + 3.13: py313 [basic_dep] deps =