diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cfc8666..d8ba782 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: needs: intro strategy: matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] # Steps represent a sequence of tasks that will be executed as part of the job. steps: @@ -44,7 +44,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pylint pytest pytest-cov toml + pip install pylint==3.2.7 pytest pytest-cov toml pip install . - name: Analysing the code with pylint @@ -57,7 +57,7 @@ jobs: needs: intro strategy: matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] # Steps represent a sequence of tasks that will be executed as part of the job. steps: @@ -85,7 +85,7 @@ jobs: needs: intro strategy: matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] # Steps represent a sequence of tasks that will be executed as part of the job. steps: @@ -100,7 +100,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pylint pytest pytest-cov toml + pip install pylint==3.2.7 pytest pytest-cov toml pip install . - name: Create coverage report diff --git a/pyproject.toml b/pyproject.toml index e766b97..bfc3dc5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,9 @@ classifiers = [ "Operating System :: OS Independent", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11" + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13" ] dependencies = [ diff --git a/setup.cfg b/setup.cfg index cc6a85b..94a1699 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,6 +15,9 @@ classifiers = Programming Language :: Python :: 3.8 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 project_urls = Documentation = https://github.com/NewTec-GmbH/pySupersetCli Source = https://github.com/NewTec-GmbH/pySupersetCli