Skip to content

Commit b09fb8d

Browse files
committed
[EN-1642] jupyter dep optional
1 parent 730c61f commit b09fb8d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/testpackage.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
installation:
1414
strategy:
1515
matrix:
16-
os: [ubuntu-latest, windows-latest, macos-latest]
17-
python-version: [3.6, 3.7, 3.8]
16+
os: [ubuntu-latest]
17+
python-version: [3.8]
1818

1919
runs-on: ${{ matrix.os }}
2020

@@ -47,8 +47,8 @@ jobs:
4747
needs: installation
4848
strategy:
4949
matrix:
50-
os: [ubuntu-latest, windows-latest, macos-latest]
51-
python-version: [3.6, 3.7, 3.8]
50+
os: [ macos-latest]
51+
python-version: [ 3.8]
5252

5353
runs-on: ${{ matrix.os }}
5454

@@ -67,7 +67,7 @@ jobs:
6767
- name: Set poetry env
6868
run: |
6969
poetry config virtualenvs.create false
70-
poetry install --no-root --user
70+
poetry install --no-root
7171
shell: bash
7272
- name: Run tests
7373
run: |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ sphinx = "^2.4.4"
4646
toml = "^0.10.0"
4747
sphinx_rtd_theme = "^0.4.3"
4848
pygments = "^2.6.1"
49-
jupyter = "^1.0.0"
49+
jupyter = { version = "^1.0.0", optional = true }
5050

5151
[tool.poetry.extras]
5252
docs = ["toml"]

0 commit comments

Comments
 (0)