We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdcd701 commit c791383Copy full SHA for c791383
.circleci/config.yml
@@ -108,10 +108,34 @@ jobs:
108
path: test-reports3.7
109
destination: test-reports3.7
110
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
124
+ - image: python:3.9
125
126
127
128
129
130
131
132
133
workflows:
134
version: 2
135
build:
136
jobs:
137
# - build-python27
138
- build-python36
- - build-python37
139
+ - build-python37
140
+ - build-python38
141
+ - build-python39
0 commit comments