diff --git a/.github/workflows/unit_test.yml b/.github/workflows/unit_test.yml index 76b6124..64a3a66 100644 --- a/.github/workflows/unit_test.yml +++ b/.github/workflows/unit_test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ${{matrix.os}} strategy: matrix: - python-version: ["3.12", "3.9"] + python-version: ["3.12", "3.10"] os: [ubuntu-latest, windows-latest] steps: diff --git a/example/django-app/README.md b/example/django-app/README.md index 7d7e2ad..989f3cc 100644 --- a/example/django-app/README.md +++ b/example/django-app/README.md @@ -5,7 +5,7 @@ To find Python SDK usage documentation, visit our [docs](https://docs.devcycle.c ## Requirements. -Python 3.7+ and Django 4.2+ +Python 3.10+ and Django 6.0.4+ ## Installation diff --git a/example/django-app/requirements.txt b/example/django-app/requirements.txt index 5b6b804..1fec939 100644 --- a/example/django-app/requirements.txt +++ b/example/django-app/requirements.txt @@ -1,2 +1,2 @@ -django >= 4.2.29 +django >= 6.0.4 -e ../../ diff --git a/requirements.lint.txt b/requirements.lint.txt index 6f6b4dd..058441c 100644 --- a/requirements.lint.txt +++ b/requirements.lint.txt @@ -4,5 +4,5 @@ black~=26.3.1 mypy~=1.15.0 mypy-extensions~=1.0.0 ruff~=0.9.0 -types-requests~=2.32.0 +types-requests~=2.33.0 types-urllib3~=1.26.25.14 diff --git a/requirements.test.txt b/requirements.test.txt index 80e5b61..41a457f 100644 --- a/requirements.test.txt +++ b/requirements.test.txt @@ -1,7 +1,7 @@ -r requirements.txt -pytest~=7.4.0 +pytest~=9.0.3 pytest-benchmark~=4.0.0 responses~=0.25.6 -types-requests~=2.32.0 -types-urllib3~=1.26.25.14 +types-requests>=2.32.0 +types-urllib3>=1.26.0 diff --git a/requirements.txt b/requirements.txt index 1054d22..dc7ab31 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ setuptools >= 21.0.0 urllib3 >= 1.15.1 -requests >= 2.32 +requests >= 2.33.0 wasmtime ~= 30.0.0 protobuf >= 4.23.3 openfeature-sdk ~= 0.8.0 diff --git a/setup.py b/setup.py index 53350f2..a615a32 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ url="https://github.com/devcycleHQ/python-server-sdk", keywords=["DevCycle"], install_requires=REQUIRES, - python_requires=">=3.9", + python_requires=">=3.10", packages=find_packages(), package_data={ "": ["VERSION.txt"],