Skip to content
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
46 changes: 44 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Install hatch
run: |
python --version
python -m pip install hatch
python -m pip install hatch "virtualenv<21"

- name: Run the tests
timeout-minutes: 15
Expand Down Expand Up @@ -104,6 +104,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6

- name: Preinstall hatch and virtualenv
run: |
python --version
python -m pip install hatch "virtualenv<21"

- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
- name: Run Linters
run: |
Expand All @@ -116,7 +122,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6

- name: Preinstall hatch and virtualenv
run: |
python --version
python -m pip install hatch "virtualenv<21"

- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1

- uses: jupyter-server/jupyter_releaser/.github/actions/check-release@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -125,7 +138,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6

- name: Preinstall hatch and virtualenv
run: |
python --version
python -m pip install hatch "virtualenv<21"

- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1

- name: Build API docs
run: |
hatch run docs:api
Expand All @@ -148,6 +168,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v6

- name: Preinstall hatch and virtualenv
run: |
python --version
python -m pip install hatch "virtualenv<21"

- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1

Expand All @@ -170,11 +195,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6

- uses: actions/setup-python@v6
with:
python-version: "3.10"

- name: Preinstall hatch and virtualenv
run: |
python --version
python -m pip install hatch "virtualenv<21"

- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
dependency_type: minimum
python_version: "3.10"
python_version: ${{ matrix.python-version }}

- name: List installed packages
run: |
Expand All @@ -191,10 +226,17 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v6

- name: Preinstall hatch and virtualenv
run: |
python --version
python -m pip install hatch "virtualenv<21"

- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
dependency_type: pre

- name: Run the tests
run: |
hatch run test:nowarn
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
### Enhancements made

- Made IOPubThread constructor backward compatible [#1492](https://github.com/ipython/ipykernel/pull/1492) ([@JohanMabille](https://github.com/JohanMabille), [@SylvainCorlay](https://github.com/SylvainCorlay), [@ianthomas23](https://github.com/ianthomas23), [@minrk](https://github.com/minrk))
- Advertizes kernel protocol 5.5 [#1488](https://github.com/ipython/ipykernel/pull/1488) ([@JohanMabille](https://github.com/JohanMabille), [@ianthomas23](https://github.com/ianthomas23))
- Advertises kernel protocol 5.5 [#1488](https://github.com/ipython/ipykernel/pull/1488) ([@JohanMabille](https://github.com/JohanMabille), [@ianthomas23](https://github.com/ianthomas23))
- Upgrade to jupyter_client 8.8.0 [#1487](https://github.com/ipython/ipykernel/pull/1487) ([@JohanMabille](https://github.com/JohanMabille), [@ianthomas23](https://github.com/ianthomas23))
- Implement kernel-side callstack filtering for internal frames [#1481](https://github.com/ipython/ipykernel/pull/1481) ([@arjxn-py](https://github.com/arjxn-py), [@JohanMabille](https://github.com/JohanMabille), [@ianthomas23](https://github.com/ianthomas23))

Expand Down