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 "pyyaml-include<2.0" #64

Merged
merged 1 commit into from
Apr 5, 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
6 changes: 3 additions & 3 deletions .github/workflows/check-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1

- name: Install dependencies
run: python -m pip install -U "copier>=8.0.0" jinja2-time "jupyterlab>=4.0.0,<5" "pydantic<2.0.0"
run: python -m pip install -U "copier>=8.0.0" jinja2-time "jupyterlab>=4.0.0,<5" "pydantic<2.0.0" "pyyaml-include<2.0"

- name: Create the extension
run: |
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1

- name: Install dependencies
run: python -m pip install -U "copier>=8.0.0" jinja2-time "jupyterlab>=4.0.0,<5" "pydantic<2.0.0"
run: python -m pip install -U "copier>=8.0.0" jinja2-time "jupyterlab>=4.0.0,<5" "pydantic<2.0.0" "pyyaml-include<2.0"

- name: Create the extension
run: |
Expand All @@ -115,7 +115,7 @@ jobs:
working-directory: myextension/ui-tests
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
YARN_ENABLE_IMMUTABLE_INSTALLS: false
YARN_ENABLE_IMMUTABLE_INSTALLS: false
run: jlpm install

- name: Set up browser cache
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: Install dependencies
run: |
python -m pip install "copier>=8.0.0" jinja2-time "pydantic<2.0.0"
python -m pip install "copier>=8.0.0" jinja2-time "pydantic<2.0.0" "pyyaml-include<2.0"

- name: Create pure frontend extension
env:
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:

- name: Install dependencies
run: |
python -m pip install "copier>=8.0.0" jinja2-time "pydantic<2.0.0"
python -m pip install "copier>=8.0.0" jinja2-time "pydantic<2.0.0" "pyyaml-include<2.0"

- name: Setup Git
run: |
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:

- name: Install dependencies
run: |
python -m pip install "copier>=8.0.0" jinja2-time "pydantic<2.0.0"
python -m pip install "copier>=8.0.0" jinja2-time "pydantic<2.0.0" "pyyaml-include<2.0"

- name: Setup Git
run: |
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:

- name: Install dependencies
run: |
python -m pip install "copier>=8.0.0" jinja2-time "pydantic<2.0.0"
python -m pip install "copier>=8.0.0" jinja2-time "pydantic<2.0.0" "pyyaml-include<2.0"

- name: Setup Git
run: |
Expand Down Expand Up @@ -218,7 +218,7 @@ jobs:

- name: Install dependencies
run: |
python -m pip install "copier>=8.0.0" jinja2-time build "pydantic<2.0.0"
python -m pip install "copier>=8.0.0" jinja2-time build "pydantic<2.0.0" "pyyaml-include<2.0"

- name: Setup Git
run: |
Expand Down Expand Up @@ -388,7 +388,7 @@ jobs:

- name: Install dependencies
run: |
python -m pip install "copier>=8.0.0" jinja2-time build "pydantic<2.0.0"
python -m pip install "copier>=8.0.0" jinja2-time build "pydantic<2.0.0" "pyyaml-include<2.0"

- name: Setup Git
run: |
Expand Down Expand Up @@ -432,7 +432,7 @@ jobs:

- name: Install dependencies
run: |
python -m pip install "copier>=8.0.0" jinja2-time build "pydantic<2.0.0"
python -m pip install "copier>=8.0.0" jinja2-time build "pydantic<2.0.0" "pyyaml-include<2.0"

- name: Setup Git
run: |
Expand Down Expand Up @@ -475,7 +475,7 @@ jobs:

- name: Install dependencies
run: |
python -m pip install "copier>=8.0.0" jinja2-time "pydantic<2.0.0"
python -m pip install "copier>=8.0.0" jinja2-time "pydantic<2.0.0" "pyyaml-include<2.0"

- name: Setup Git
run: |
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ a JupyterLab extension. Four kinds of extension are supported:
With `pip`:

```sh
pip install "copier~=7.2" jinja2-time "pydantic<2.0.0"
pip install "copier~=7.2" jinja2-time "pydantic<2.0.0" "pyyaml-include<2.0"
```

Or with `conda` / `mamba`:

```sh
conda install -c conda-forge "copier>=7,<8" jinja2-time
conda install -c conda-forge "copier>=7,<8" jinja2-time "pyyaml-include<2.0"
```

2. Create an extension directory and go to it.
Expand Down
Loading