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

jupyter-collaboration v2.1.4 #15

Merged
merged 6 commits into from
Oct 17, 2024
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
4 changes: 2 additions & 2 deletions .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 17 additions & 15 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{% set jupyterlab_version = ">=4.0.5,<4.2" %}
{% set jupyterlab_version = ">=4.0.5,<4.2" %}
{% set version = "2.1.3" %}
{% set jupyterlab_version = ">=4.0.5,<4.2" %}
{% set version = "2.1.4" %}

# the `if` block helps the bot avoid duplicating this line over and over...
{% if 1 %}{% set jupyterlab_version = ">=4.0.5,<4.2" %}{% endif %}

package:
name: jupyter-collaboration
version: {{ version }}

source:
url: https://pypi.io/packages/source/j/jupyter-collaboration/jupyter_collaboration-{{ version }}.tar.gz
sha256: 3a35fb0bbf9e45eae0810c0a11ca85d429941f9c06b45f196afb6ebd36133539
sha256: 613df0ad343c8a6b932bccde25bc2c707b5ac2daaca5fd6822d1b330c7e0e62a

build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
host:
Expand All @@ -27,9 +27,9 @@ requirements:
run:
- python >=3.8
- jupyter_server >=2.0.0,<3.0.0
- jupyter_ydoc >=2.0.1,<3.0.0
- jupyter_ydoc >=2.1.2,<3.0.0
- pycrdt
- pycrdt-websocket >=0.14.0,<0.15.0
- pycrdt-websocket >=0.15.0,<0.16.0
- jupyter_events >=0.10.0
- jupyter_server_fileid >=0.7.0,<1
- jsonschema >=4.18.0
Expand All @@ -42,16 +42,18 @@ test:
requires:
- pip
- jupyterlab
- m2-grep # [win]
commands:
- pip check
# jupyter_server server extension
- jupyter server extension list # [unix]
- jupyter server extension list 1>server_extensions 2>&1 # [unix]
- cat server_extensions | grep "jupyter_collaboration.*OK" # [unix]
# server extension
- jupyter server extension list
# labextensions
- jupyter labextension list # [unix]
- jupyter labextension list 1>labextensions 2>&1 # [unix]
- cat labextensions | grep "collaboration-extension.*OK.*jupyter_collaboration" # [unix]
- jupyter labextension list
# check
- jupyter server extension list 1>server_extensions 2>&1
- jupyter labextension list 1>labextensions 2>&1
- grep -iE "jupyter_collaboration.*OK" server_extensions
- grep -iE "collaboration-extension.*OK.*jupyter_collaboration" labextensions

about:
home: https://github.com/jupyterlab/jupyter-collaboration
Expand Down