diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 3bb74f8..897fce8 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -9,7 +9,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: ['3.9', '3.10', '3.11'] + python-version: ['3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v1 diff --git a/README.md b/README.md index e86660d..d9d5376 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ OneLogin by One Identity open source projects are supported through [OneLogin Gi ## Requirements -- Python 3.7+ +- Python 3.10+ - Dependencies: - Pydantic 2.11+ (latest version) - urllib3 2.0.2+ diff --git a/pyproject.toml b/pyproject.toml index f042d8e..a86c430 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ authors = [ license = {text = "NoLicense"} readme = "README.md" keywords = ["OneLogin", "SDK", "API"] -requires-python = ">=3.7" +requires-python = ">=3.10" dependencies = [ "urllib3>=2.0.2", "python-dateutil>=2.5.3", diff --git a/tox.ini b/tox.ini index 9426aca..9d88926 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py37, py38, py39, py310, py311 +envlist = py310, py311, py312, py313 isolated_build = True [testenv]