diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 609c2ff..c04e6b7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: [3.11, 3.12, 3.13] + python-version: [3.11, 3.12, 3.13, 3.14] steps: - uses: actions/checkout@v2 diff --git a/Pipfile b/Pipfile index 1122c45..b906cb7 100644 --- a/Pipfile +++ b/Pipfile @@ -10,5 +10,7 @@ pylint = "*" pytest = "*" [packages] +requests = "*" [requires] +python_version = ">=3.11" diff --git a/setup.py b/setup.py index bfb40ae..f165349 100644 --- a/setup.py +++ b/setup.py @@ -31,6 +31,7 @@ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Operating System :: OS Independent", ], )