diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index 95aec95..7b94ef4 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] name: Python ${{ matrix.python-version }} sample steps: @@ -30,4 +30,3 @@ jobs: - name: Test with MyPy run: | poetry run mypy . - diff --git a/pyproject.toml b/pyproject.toml index 10969dc..f6bbc72 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "lacuscore" -version = "1.11.1" +version = "1.11.2" description = "Core of Lacus, usable as a module" authors = ["Raphaƫl Vinot "] license = "BSD-3-Clause" @@ -23,6 +23,7 @@ classifiers = [ 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Topic :: Security', 'Topic :: Internet', ]