Skip to content
Merged
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
7 changes: 5 additions & 2 deletions .github/workflows/pull-requests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
timeout-minutes: 10
strategy:
matrix:
container: [ "python:3.9", "python:3.10", "python:3.11" ]
container: [ "python:3.10", "python:3.11" ]
container:
image: ${{ matrix.container }}

Expand All @@ -30,6 +30,9 @@ jobs:
fetch-depth: 0 # this (and below) is needed to have setuptools_scm report the correct version
fetch-tags: true

- name: Mark workspace as safe directory
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"

- name: Upgrade pip
run: pip install --upgrade pip

Expand Down Expand Up @@ -107,7 +110,7 @@ jobs:
if: matrix.installation-type == 'minimal'
run: |
pip install --no-deps -e .
pip install requests==2.32.4 openfeature-sdk==0.4.2 typing_extensions==4.9.0 httpx==0.27.2
pip install "requests>=2.33.1,<3.0.0" openfeature-sdk==0.4.2 typing_extensions==4.9.0 httpx==0.27.2
pip install pytest==7.4.2 pytest-mock==3.11.1

- name: Test telemetry functionality
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ classifiers = [
]
keywords = []
dependencies = [
"requests==2.32.4",
"requests>=2.33.1,<3.0.0",
"openfeature-sdk==0.4.2",
"typing_extensions>=4.9.0,<5.0.0",
"httpx==0.27.2",
"protobuf>=5.29.5,<7.0.0"
]
requires-python = ">=3.9"
requires-python = ">=3.10"

[project.optional-dependencies]
dev = [
Expand Down
Loading