Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pin sniffio<1.3.1 #221

Merged
merged 9 commits into from
Mar 7, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
5 changes: 5 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ jobs:
functional-test:
name: Functional test with LXD
runs-on: ubuntu-latest
strategy:
matrix:
juju: ["3/stable", 2.9/stable]
addyess marked this conversation as resolved.
Show resolved Hide resolved
timeout-minutes: 360
steps:
- name: Check out code
Expand All @@ -54,6 +57,8 @@ jobs:
pip install tox
- name: Setup operator environment
uses: charmed-kubernetes/actions-operator@main
with:
juju-channel: ${{ matrix.juju }}
- name: Run test
run: tox -e func
- name: Show Status
Expand Down
5 changes: 4 additions & 1 deletion wheelhouse.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,13 @@ setuptools-scm<=1.17.0;python_version < '3.8'
setuptools-scm<7;python_version >= '3.8'
flit_core<4.0.0;python_version >= '3.8'
flit_scm<=1.7.0;python_version >= '3.8'
anyio<3.7.0;python_version >= '3.8'
charmhelpers>=0.4.0,<2.0.0
charms.reactive>=0.1.0,<2.0.0
wheel<0.34;python_version < '3.8'
wheel<1.0;python_version >= '3.8'
# pin netaddr to avoid pulling importlib-resources
netaddr<=0.7.19

# https://github.com/python-trio/sniffio/pull/49
anyio<3.7.0;python_version >= '3.8'
sniffio<1.3.1 # 1.3.1 requires setuptools>=64
Loading