Skip to content

Commit 061d846

Browse files
authored
Switch to hatch build plugin (#845)
1 parent d5f2ad9 commit 061d846

File tree

5 files changed

+424
-39
lines changed

5 files changed

+424
-39
lines changed

.github/workflows/check-release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
group: [check_release, link_check]
14+
fail-fast: false
1415
steps:
1516
- name: Checkout
1617
uses: actions/checkout@v2

.github/workflows/python-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
3030
- name: Install the Python dependencies
3131
run: |
32-
pip install -e ".[test]" codecov
32+
pip install -e ".[test,dev]" codecov
3333
- name: Run the tests
3434
if: ${{ !startsWith(matrix.python-version, 'pypy') && !startsWith(matrix.os, 'windows') }}
3535
run: |

CONTRIBUTING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ steps::
2727
pip install --upgrade setuptools pip
2828
git clone https://github.com/jupyter/jupyter_server
2929
cd jupyter_server
30-
pip install -e ".[test]"
30+
pip install -e ".[dev,test]"
3131

3232
If you are using a system-wide Python installation and you only want to install the server for you,
3333
you can add ``--user`` to the install commands.
@@ -45,7 +45,7 @@ need to worry too much about your code style.
4545
As long as your code is valid,
4646
the pre-commit hook should take care of how it should look.
4747
`pre-commit` and its associated hooks will automatically be installed when
48-
you run ``pip install -e ".[test]"``
48+
you run ``pip install -e ".[dev,test]"``
4949

5050
To install ``pre-commit`` manually, run the following::
5151

0 commit comments

Comments
 (0)