Skip to content

Commit c791383

Browse files
committed
ci:: make sure installation of python sdk works on python 3.8 & 3.9
1 parent fdcd701 commit c791383

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

.circleci/config.yml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,34 @@ jobs:
108108
path: test-reports3.7
109109
destination: test-reports3.7
110110

111+
build-python38:
112+
docker:
113+
- image: python:3.8
114+
working_directory: ~/repo
115+
steps:
116+
- checkout
117+
- run:
118+
name: make sure install works
119+
command: |
120+
python setup.py install
121+
122+
build-python39:
123+
docker:
124+
- image: python:3.9
125+
working_directory: ~/repo
126+
steps:
127+
- checkout
128+
- run:
129+
name: make sure install works
130+
command: |
131+
python setup.py install
132+
111133
workflows:
112134
version: 2
113135
build:
114136
jobs:
115137
# - build-python27
116138
- build-python36
117-
- build-python37
139+
- build-python37
140+
- build-python38
141+
- build-python39

0 commit comments

Comments
 (0)