Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit bea3256

Browse files
Specifiy CI docker images down to patch version (#812)
1 parent 7fd3027 commit bea3256

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.circleci/config.yml

+9-8
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
lint-unit-37: &lint-unit
1010
working_directory: ~/project
1111
docker:
12-
- image: circleci/python:3.7-stretch-node-browsers
12+
- image: circleci/python:3.7.6-stretch-node-browsers
1313
environment:
1414
PYTHON_VERSION: py37
1515
steps:
@@ -22,6 +22,7 @@ jobs:
2222
command: |
2323
sudo pip install virtualenv --upgrade
2424
python -m venv venv || virtualenv venv && . venv/bin/activate
25+
pip install --progress-bar off -e git+https://github.com/plotly/dash.git@dev#egg=dash[dev,testing]
2526
pip install --progress-bar off --no-cache-dir -r dev-requirements.txt
2627
- save_cache:
2728
key: dep-{{ checksum ".circleci/config.yml" }}-{{ checksum "ver.txt" }}-{{ checksum "dev-requirements.txt" }}
@@ -42,7 +43,7 @@ jobs:
4243
lint-unit-36:
4344
<<: *lint-unit
4445
docker:
45-
- image: circleci/python:3.6-stretch-node-browsers
46+
- image: circleci/python:3.6.9-stretch-node-browsers
4647
environment:
4748
PYTHON_VERSION: py36
4849

@@ -56,7 +57,7 @@ jobs:
5657
build-dash-37: &build-dash
5758
working_directory: ~/project
5859
docker:
59-
- image: circleci/python:3.7-stretch-node-browsers
60+
- image: circleci/python:3.7.6-stretch-node-browsers
6061
environment:
6162
PYTHON_VERSION: py37
6263
steps:
@@ -97,7 +98,7 @@ jobs:
9798
build-dash-36:
9899
<<: *build-dash
99100
docker:
100-
- image: circleci/python:3.6-stretch-node-browsers
101+
- image: circleci/python:3.6.9-stretch-node-browsers
101102
environment:
102103
PYTHON_VERSION: py36
103104

@@ -111,7 +112,7 @@ jobs:
111112
test-37: &test
112113
working_directory: ~/project
113114
docker:
114-
- image: circleci/python:3.7-stretch-node-browsers
115+
- image: circleci/python:3.7.6-stretch-node-browsers
115116
environment:
116117
PYTHON_VERSION: py37
117118
PERCY_PARALLEL_TOTAL: -1
@@ -143,7 +144,7 @@ jobs:
143144
test-36:
144145
<<: *test
145146
docker:
146-
- image: circleci/python:3.6-stretch-node-browsers
147+
- image: circleci/python:3.6.9-stretch-node-browsers
147148
environment:
148149
PYTHON_VERSION: py36
149150
PERCY_ENABLE: 0
@@ -159,7 +160,7 @@ jobs:
159160
test-legacy-37: &test-legacy
160161
working_directory: ~/project
161162
docker:
162-
- image: circleci/python:3.7-stretch-node-browsers
163+
- image: circleci/python:3.7.6-stretch-node-browsers
163164
environment:
164165
PYTHON_VERSION: py37
165166
PERCY_PARALLEL_TOTAL: -1
@@ -193,7 +194,7 @@ jobs:
193194
test-legacy-36:
194195
<<: *test-legacy
195196
docker:
196-
- image: circleci/python:3.6-stretch-node-browsers
197+
- image: circleci/python:3.6.9-stretch-node-browsers
197198
environment:
198199
PYTHON_VERSION: py36
199200
PERCY_ENABLE: 0

dev-requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
pandas
22
xlrd
3-
flake8
43
mimesis;python_version>="3.6"
54
virtualenv;python_version=="2.7"

0 commit comments

Comments
 (0)