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 v3.0.0 #18

Merged
merged 5 commits into from
Oct 30, 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
2 changes: 1 addition & 1 deletion README.md

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

10 changes: 5 additions & 5 deletions conda-forge.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
github:
branch_name: main
tooling_branch_name: main
bot:
inspection: hint-all
conda_build:
error_overlinking: true
conda_forge_output_validation: true
bot:
inspection: hint-all
github:
branch_name: main
tooling_branch_name: main
38 changes: 12 additions & 26 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,40 +1,28 @@
{% set version = "2.1.5" %}

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

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

source:
url: https://pypi.io/packages/source/j/jupyter-collaboration/jupyter_collaboration-{{ version }}.tar.gz
sha256: 24d0db0124786850e82342e7d74ce694eb548e0aef29024227131e30d0fbae1d
sha256: 79ec00b21fc423c0d5e053568231214fad5151b69813ab2e3809f2e1b7f5082c

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

requirements:
host:
- python >=3.8
- pip
- hatchling >=1.4.0
- hatch-nodejs-version
- hatch-jupyter-builder >=0.5
- jupyterlab {{ jupyterlab_version }}
- pip
- python >=3.8
run:
- jupyter-collaboration-ui >=1.0.0
- jupyter-docprovider >=1.0.0
- jupyter_server_ydoc >=1.0.0
- python >=3.8
- jupyter_server >=2.0.0,<3.0.0
- jupyter_ydoc >=2.1.2,<3.0.0
- pycrdt
- pycrdt-websocket >=0.15.0,<0.16.0
- jupyter_events >=0.10.0
- jupyter_server_fileid >=0.7.0,<1
- jsonschema >=4.18.0
run_constrained:
- jupyterlab {{ jupyterlab_version }}

test:
imports:
Expand All @@ -50,19 +38,17 @@ test:
# labextensions
- 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
- jupyter labextension list 1>labextensions 2>&1
- grep -iE "collaboration-extension.*OK" labextensions
- grep -iE "docprovider-extension.*OK" labextensions

about:
home: https://github.com/jupyterlab/jupyter-collaboration
summary: A Jupyter extension providing support for collaborative features in JupyterLab
summary: JupyterLab/Jupyter Notebook 7+ Real Time Collaboration extension (metapackage)
license: BSD-3-Clause
license_family: BSD
license_file:
- LICENSE
- jupyter_collaboration/labextension/static/third-party-licenses.json
doc_url: https://jupyterlab-realtime-collaboration.readthedocs.io

extra:
Expand Down