Skip to content

Commit 7ed1b54

Browse files
committed
Fix readthedocs by manually unpinning werkzeug in the graphene-tornado 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",
1 parent 3efae4b commit 7ed1b54

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
uses: ./ci/actions/windll
6060

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

6464
- run: uv pip freeze
6565

packages/vaex-graphql/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@
1212
license = 'MIT'
1313
version = version.__version__
1414
url = 'https://www.github.com/vaexio/vaex'
15-
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']
15+
# for now we leave graphene-tornado / graphene on v2
16+
# ref https://github.com/vaexio/vaex/pull/2356#issuecomment-2320707228
17+
# 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
18+
# "graphene-tornado @ https://github.com/ddelange/graphene-tornado/archive/refs/heads/2.6.1.unpin-werkzeug.zip",
19+
install_requires_graphql = ['vaex-core~=4.0', 'graphene-tornado~=2.5']
1620

1721
setup(
1822
name=name + '-graphql',

requirements-override.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@
5151
"nbconvert",
5252
"jupyterlab",
5353
"plotly",
54+
# https://github.com/vaexio/vaex/pull/2356#issuecomment-2320707228
55+
"graphene-tornado @ https://github.com/ddelange/graphene-tornado/archive/refs/heads/2.6.1.unpin-werkzeug.zip",
5456
]
5557
},
5658
)

0 commit comments

Comments
 (0)