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/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.test.txt
pip install -r requirements.lint.txt

- name: Check formatting
run: |
Expand Down
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"]
os: [ubuntu-latest, windows-latest]

steps:
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
django >= 6.0.4
Copy link

Copilot AI Apr 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This bumps the example app dependency from Django 4.2+ to django >= 6.0.4, but the example’s README still states it requires “Django 4.2+”. Please update the example documentation to reflect the new minimum Django version so users don’t install an incompatible version.

Copilot uses AI. Check for mistakes.
-e ../../
8 changes: 8 additions & 0 deletions requirements.lint.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
-r requirements.txt

black~=26.3.1
mypy~=1.15.0
mypy-extensions~=1.0.0
ruff~=0.9.0
types-requests~=2.32.0
types-urllib3~=1.26.25.14
6 changes: 1 addition & 5 deletions requirements.test.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
-r requirements.txt

black~=25.1.0
mypy~=1.15.0
mypy-extensions~=1.0.0
pytest~=7.4.0
pytest>=9.0.3
pytest-benchmark~=4.0.0
responses~=0.25.6
ruff~=0.9.0
types-requests~=2.32.0
types-urllib3~=1.26.25.14
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
Loading