diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 209041f..be58946 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - python-version: ['3.9', '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5f3ddad..c050f28 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: '3.13' - name: Install Build Dependencies run: python -m pip install build twine diff --git a/pyproject.toml b/pyproject.toml index e9361ee..9c26808 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,8 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Natural Language :: English", diff --git a/requirements.txt b/requirements.txt index 633fd7e..7677492 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -pylint==2.17.4 +pylint==3.3.8 colorama==0.4.6 build==0.9.0