Skip to content

Commit 903ac87

Browse files
committed
Update testing.yml
1 parent e29c32e commit 903ac87

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

.github/workflows/testing.yml

+6-9
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
lint:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
17-
- uses: actions/setup-python@v4
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-python@v5
1818
with:
1919
python-version: "3.11"
2020
cache: pip
@@ -23,7 +23,6 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
pip install -e .[strict]
2726
pip install -e .[dev]
2827
pre-commit install
2928
@@ -41,8 +40,8 @@ jobs:
4140
PMG_MAPI_KEY: ${{ secrets.PMG_MAPI_KEY }}
4241

4342
steps:
44-
- uses: actions/checkout@v3
45-
- uses: actions/setup-python@v4
43+
- uses: actions/checkout@v4
44+
- uses: actions/setup-python@v5
4645
with:
4746
python-version: ${{ matrix.python-version }}
4847
cache: pip
@@ -51,7 +50,6 @@ jobs:
5150
- name: Install dependencies
5251
run: |
5352
python -m pip install --upgrade pip
54-
pip install -e .[strict]
5553
pip install -e .[tests]
5654
5755
- name: Test Modules
@@ -74,12 +72,12 @@ jobs:
7472
PMG_MAPI_KEY: ${{ secrets.PMG_MAPI_KEY }}
7573

7674
steps:
77-
- uses: actions/checkout@v3
75+
- uses: actions/checkout@v4
7876

7977
- name: Install pandoc
8078
run: sudo apt-get install pandoc
8179

82-
- uses: actions/setup-python@v4
80+
- uses: actions/setup-python@v5
8381
with:
8482
python-version: "3.10"
8583
cache: pip
@@ -88,7 +86,6 @@ jobs:
8886
- name: Install dependencies
8987
run: |
9088
python -m pip install --upgrade pip
91-
pip install -e .[strict]
9289
pip install -e .[docs]
9390
- name: Build
9491
run: jupyter-book build --path-output docs docs/source

0 commit comments

Comments
 (0)