Skip to content

Commit 0a46829

Browse files
committed
Update to 2.1
1 parent 64f3b15 commit 0a46829

File tree

1 file changed

+27
-29
lines changed

1 file changed

+27
-29
lines changed

.circleci/config.yml

Lines changed: 27 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2
1+
version: 2.1
22

33
commands:
44
test_core:
@@ -80,35 +80,35 @@ jobs:
8080
command: "black --check ."
8181

8282
# Core
83-
python-3.6-core:
83+
python_36_core:
8484
docker:
8585
- image: circleci/python:3.6-stretch-node-browsers
8686
steps:
8787
- test_core:
8888
py: "36"
8989

90-
python-3.7-core:
90+
python_37_core:
9191
docker:
9292
- image: circleci/python:3.7-stretch-node-browsers
9393
steps:
9494
- test_core:
9595
py: "37"
9696

97-
python-3.8-core:
97+
python_38_core:
9898
docker:
9999
- image: circleci/python:3.8-buster-node-browsers
100100
steps:
101101
- test_core:
102102
py: "38"
103103

104-
python-3.9-core:
104+
python_39_core:
105105
docker:
106106
- image: circleci/python:3.9-buster-node-browsers
107107
steps:
108108
- test_core:
109109
py: "39"
110110

111-
python-3.7-percy:
111+
python_37_percy:
112112
docker:
113113
- image: circleci/python:3.7-stretch-node-browsers
114114
environment:
@@ -142,35 +142,35 @@ jobs:
142142
143143
144144
# Optional
145-
python-3.6-optional:
145+
python_36_optional:
146146
docker:
147147
- image: circleci/python:3.6-stretch-node-browsers
148148
steps:
149149
- test_optional:
150150
py: "36"
151151

152-
python-3.7-optional:
152+
python_37_optional:
153153
docker:
154154
- image: circleci/python:3.7-stretch-node-browsers
155155
steps:
156156
- test_optional:
157157
py: "37"
158158

159-
python-3.8-optional:
159+
python_38_optional:
160160
docker:
161161
- image: circleci/python:3.8-buster-node-browsers
162162
steps:
163163
- test_optional:
164164
py: "38"
165165

166-
python-3.9-optional:
166+
python_39_optional:
167167
docker:
168168
- image: circleci/python:3.9-buster-node-browsers
169169
steps:
170170
- test_optional:
171171
py: "39"
172172

173-
# python-3.6-optional:
173+
# python_3.6_optional:
174174
# docker:
175175
# - image: circleci/python:3.6-stretch-node-browsers
176176
#
@@ -199,7 +199,7 @@ jobs:
199199
# command: "cd packages/python/plotly; pytest plotly/tests/test_io"
200200
# no_output_timeout: 20m
201201
#
202-
# python-3.7-optional:
202+
# python_3.7_optional:
203203
# docker:
204204
# - image: circleci/python:3.7-stretch-node-browsers
205205
#
@@ -234,7 +234,7 @@ jobs:
234234
# name: Test lazy imports
235235
# command: "cd packages/python/plotly; pytest -x test_init/test_lazy_imports.py"
236236
#
237-
# python-3.8-optional:
237+
# python_3.8_optional:
238238
# docker:
239239
# - image: circleci/python:3.8-buster-node-browsers
240240
#
@@ -276,7 +276,7 @@ jobs:
276276
# - store_artifacts:
277277
# path: packages/python/plotly/plotly/tests/test_orca/images/linux/failed
278278
#
279-
# python-3.9-optional:
279+
# python_3.9_optional:
280280
# docker:
281281
# - image: circleci/python:3.9-buster-node-browsers
282282
#
@@ -306,7 +306,7 @@ jobs:
306306
# no_output_timeout: 20m
307307

308308
# Chart studio
309-
python-3.7-chart_studio:
309+
python_37_chart_studio:
310310
docker:
311311
- image: circleci/python:3.7-stretch-node-browsers
312312

@@ -376,8 +376,6 @@ jobs:
376376
# use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers`
377377
- image: circleci/python:3.7-stretch-node-browsers
378378

379-
working_directory: ~/project
380-
381379
steps:
382380
- add_ssh_keys:
383381
fingerprints:
@@ -507,7 +505,7 @@ jobs:
507505
destination: doc/apidoc/_build/
508506

509507
workflows:
510-
version: 2
508+
511509
code_formatting:
512510
jobs:
513511
- check-code-formatting
@@ -517,15 +515,15 @@ workflows:
517515

518516
build:
519517
jobs:
520-
- python-3.6-core
521-
# - python-3.7-core
522-
- python-3.8-core
523-
# - python-3.9-core
524-
# - python-3.7-percy
525-
- python-3.6-optional
526-
# - python-3.7-optional
527-
- python-3.8-optional
528-
# - python-3.9-optional
529-
# - python-3.7-chart_studio
530-
# - python-3-7-orca
518+
- python_36_core
519+
# - python_37_core
520+
- python_38_core
521+
# - python_39_core
522+
# - python_37_percy
523+
- python_36_optional
524+
# - python_37_optional
525+
- python_38_optional
526+
# - python_39_optional
527+
# - python_37_chart_studio
528+
# - python_37_orca
531529
# - build-doc

0 commit comments

Comments
 (0)