diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 9a389fc..2139ad1 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 diff --git a/pyproject.toml b/pyproject.toml index 08b4038..2ec8101 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,11 +11,11 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", "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", ] description = "A easy to use validator for json content" requires-python = '>=3.6' @@ -28,9 +28,11 @@ Home = "https://github.com/pkyosx/believe" [project.optional-dependencies] test = [ + "coverage<7.0.0", "pytest", "pytest-cov", "coverage-lcov", + "toml", ] publish = [ "flit"