Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{matrix.os}}
strategy:
matrix:
python-version: ["3.12", "3.9"]
python-version: ["3.12", "3.10"]
Comment thread
jonathannorris marked this conversation as resolved.
os: [ubuntu-latest, windows-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion example/django-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion example/django-app/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
django >= 4.2.29
django >= 6.0.4
Comment thread
jonathannorris marked this conversation as resolved.
-e ../../
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pytest options
[tool.pytest.ini_options]
minversion = "7.0"
minversion = "9.0"
addopts = "--benchmark-skip --showlocals"

# black options
Expand Down
2 changes: 1 addition & 1 deletion requirements.lint.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions requirements.test.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-r requirements.txt

pytest~=7.4.0
pytest~=9.0.3
pytest-benchmark~=4.0.0
Comment thread
jonathannorris marked this conversation as resolved.
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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Comment thread
jonathannorris marked this conversation as resolved.
package_data={
"": ["VERSION.txt"],
Expand Down
Loading