Skip to content

Commit

Permalink
Pin "pyyaml-include<2.0" (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski authored Apr 5, 2024
1 parent 96c5928 commit 36561b1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
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

0 comments on commit 36561b1

Please sign in to comment.