Skip to content

Commit f665c64

Browse files
committed
remove dev-requirements.txt
1 parent 9ed111f commit f665c64

File tree

5 files changed

+4
-9
lines changed

5 files changed

+4
-9
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- with: jupyterlab/maintainer-tools/.github/actions/base-action@v1
3737
- name: Install dependencies
3838
run: |
39-
pip install -r dev-requirements.txt .
39+
pip install -e ".[test]"
4040
- name: Test with pytest
4141
run: |
4242
python -m pytest -vv jupyter_core --timeout 60 --cov jupyter_core --cov-report term-missing:skip-covered

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
include COPYING.md
22
include CONTRIBUTING.md
33
include README.md
4-
include dev-requirements.txt
54
include jupyter_core/py.typed
65

76
exclude .pre-commit-config.yaml

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ Now create an [editable install](https://pip.pypa.io/en/stable/reference/pip_ins
1616
and download the dependencies of code and test suite by executing:
1717

1818
cd /my/projects/jupyter_core/
19-
pip install -e .
20-
pip install -r dev-requirements.txt
19+
pip install -e ".[test]"
2120
py.test
2221

2322
The last command runs the test suite to verify the setup. During development, you can pass filenames to `py.test`, and it will execute only those tests.

dev-requirements.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ console_scripts =
4040

4141
[options.extras_require]
4242
test =
43+
ipykernel
44+
pre-commit
4345
pytest
4446
pytest-cov
4547
pytest-timeout

0 commit comments

Comments
 (0)