Skip to content

Commit b16d377

Browse files
authored
Remove extra_requires (#1215)
* Remove extra_requires * Remove no-deps option * Bring back dev and test extra_requires
1 parent 6893f4b commit b16d377

File tree

6 files changed

+11
-13
lines changed

6 files changed

+11
-13
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
6363
6464
test-osx:
65-
65+
6666
runs-on: ${{ matrix.os }}
6767

6868
strategy:

.github/workflows/ui-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ jobs:
1919

2020
- name: Install dependencies
2121
run: |
22-
python -m pip install --upgrade ".[test,visual_test]"
22+
python -m pip install -r requirements-visual-test.txt
23+
python -m pip install ".[test]"
2324
jlpm
2425
jlpm build
2526
jupyter labextension develop . --overwrite
@@ -105,4 +106,3 @@ jobs:
105106
if: always()
106107
run: |
107108
cat /tmp/voila_server.log
108-

.github/workflows/update_galata_references.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ jobs:
3434

3535
- name: Install dependencies
3636
run: |
37-
python -m pip install --upgrade ".[test,visual_test]"
37+
python -m pip install -r requirements-visual-test.txt
38+
python -m pip install ".[test]"
3839
jlpm
3940
jlpm build
4041
jupyter labextension develop . --overwrite

docs/source/contribute.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,4 +223,3 @@ Editing templates
223223
The default template files are located in the folder `share/jupyter/voila/templates/default`. They are automatically picked up when running Voilà in development mode.
224224

225225
After editing the templates, reload the browser tab to see the changes.
226-

requirements-visual-test.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
jupyterlab~=3.0
2+
bqplot
3+
scipy
4+
ipympl==0.9.2
5+
ipyvolume @ git+https://github.com/jtpio/ipyvolume@ipywidgets-8
6+
jupyterlab_miami_nights==0.3.2

setup.cfg

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,6 @@ test =
5858
pytest-tornasync
5959
papermill
6060

61-
visual_test =
62-
jupyterlab~=3.0
63-
bqplot
64-
scipy
65-
ipympl==0.9.2
66-
ipyvolume @ git+https://github.com/jtpio/ipyvolume@ipywidgets-8
67-
jupyterlab_miami_nights==0.3.2
68-
6961
[options.entry_points]
7062
console_scripts =
7163
voila = voila.app:main

0 commit comments

Comments
 (0)