Skip to content

Commit 0fc5b98

Browse files
committed
Remove [all] from GH actions build process
1 parent 48d7d43 commit 0fc5b98

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install seaborn
2727
run: |
2828
pip install --upgrade pip
29-
pip install .[all] -r ci/utils.txt
29+
pip install .[stats] -r ci/utils.txt
3030
3131
- name: Install doc tools
3232
run: |
@@ -46,14 +46,14 @@ jobs:
4646
matrix:
4747
python: ["3.7", "3.8", "3.9", "3.10"]
4848
target: [test]
49-
install: [all]
49+
install: [full]
5050
deps: [latest]
5151
backend: [agg]
5252

5353
include:
5454
- python: "3.7"
5555
target: unittests
56-
install: all
56+
install: full
5757
deps: pinned
5858
backend: agg
5959
- python: "3.10"
@@ -63,7 +63,7 @@ jobs:
6363
backend: agg
6464
- python: "3.10"
6565
target: test
66-
install: all
66+
install: full
6767
deps: latest
6868
backend: tkagg
6969

@@ -79,7 +79,7 @@ jobs:
7979
- name: Install seaborn
8080
run: |
8181
pip install --upgrade pip wheel
82-
if [[ ${{matrix.install}} == 'all' ]]; then EXTRAS='[all]'; fi
82+
if [[ ${{matrix.install}} == 'full' ]]; then EXTRAS='[stats]'; fi
8383
if [[ ${{matrix.deps }} == 'pinned' ]]; then DEPS='-r ci/deps_pinned.txt'; fi
8484
pip install .$EXTRAS $DEPS -r ci/utils.txt
8585

0 commit comments

Comments
 (0)