Skip to content

Commit

Permalink
Fix readthedocs by manually unpinning werkzeug in the graphene-tornad…
Browse files Browse the repository at this point in the history
…o v2.6.1 release

# for now we leave graphene-tornado / graphene on v2
# ref vaexio#2356 (comment)
# in top level vaex[ci] we added the following (additional) direct reference requirement which adds one commit (ddelange/graphene-tornado@d75f01f) on top of the 2.6.1 release to unpin werkzeug
# "graphene-tornado @ https://github.com/ddelange/graphene-tornado/archive/refs/heads/2.6.1.unpin-werkzeug.zip",
  • Loading branch information
ddelange committed Aug 30, 2024
1 parent 3efae4b commit 7ed1b54
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
uses: ./ci/actions/windll

- name: Install vaex
run: uv pip install -v --override requirements-override.txt --system .[ci]
run: uv pip install -v --system .[ci]

- run: uv pip freeze

Expand Down
6 changes: 5 additions & 1 deletion packages/vaex-graphql/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@
license = 'MIT'
version = version.__version__
url = 'https://www.github.com/vaexio/vaex'
install_requires_graphql = ['vaex-core>=4.0.0,<5', 'graphene>=2.1.8,<3', 'graphene>=2.1.8,<3', 'graphene-tornado>=2.5.1,<3']
# for now we leave graphene-tornado / graphene on v2
# ref https://github.com/vaexio/vaex/pull/2356#issuecomment-2320707228
# in top level vaex[ci] we added the following (additional) direct reference requirement which adds one commit (https://github.com/ddelange/graphene-tornado/commit/d75f01f) on top of the 2.6.1 release to unpin werkzeug
# "graphene-tornado @ https://github.com/ddelange/graphene-tornado/archive/refs/heads/2.6.1.unpin-werkzeug.zip",
install_requires_graphql = ['vaex-core~=4.0', 'graphene-tornado~=2.5']

setup(
name=name + '-graphql',
Expand Down
1 change: 0 additions & 1 deletion requirements-override.txt

This file was deleted.

2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@
"nbconvert",
"jupyterlab",
"plotly",
# https://github.com/vaexio/vaex/pull/2356#issuecomment-2320707228
"graphene-tornado @ https://github.com/ddelange/graphene-tornado/archive/refs/heads/2.6.1.unpin-werkzeug.zip",
]
},
)

0 comments on commit 7ed1b54

Please sign in to comment.