File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -2,18 +2,18 @@ version: 2
2
2
jobs :
3
3
test :
4
4
docker :
5
- - image : circleci /python:3.9
5
+ - image : cimg /python:3.9
6
6
steps :
7
7
- checkout
8
8
- run : pip install tox
9
9
- run : tox
10
10
11
11
build_dist :
12
12
docker :
13
- - image : circleci /python:3.9
13
+ - image : cimg /python:3.9
14
14
steps :
15
15
- checkout
16
- - run : sudo pip install build twine setuptools-scm
16
+ - run : pip install build twine setuptools-scm
17
17
- run :
18
18
# https://github.com/pypa/setuptools_scm/issues/455
19
19
command : |
@@ -27,25 +27,25 @@ jobs:
27
27
28
28
test_pypi_publish :
29
29
docker :
30
- - image : circleci /python:3.9
30
+ - image : cimg /python:3.9
31
31
steps :
32
32
- attach_workspace :
33
33
at : /tmp/workspace
34
- - run : sudo pip install twine
34
+ - run : pip install twine
35
35
- run : twine upload --repository testpypi /tmp/workspace/dist/*
36
36
37
37
pypi_publish :
38
38
docker :
39
- - image : circleci /python:3.9
39
+ - image : cimg /python:3.9
40
40
steps :
41
41
- attach_workspace :
42
42
at : /tmp/workspace
43
- - run : sudo pip install twine
43
+ - run : pip install twine
44
44
- run : twine upload /tmp/workspace/dist/*
45
45
46
46
docker_build :
47
47
docker :
48
- - image : circleci/buildpack-deps:stretch
48
+ - image : cimg/base:current
49
49
steps :
50
50
- checkout
51
51
- setup_remote_docker :
62
62
63
63
docker_push :
64
64
docker :
65
- - image : circleci/buildpack-deps:stretch
65
+ - image : cimg/base:current
66
66
steps :
67
67
- run : test -n "$CIRCLE_TAG"
68
68
- attach_workspace :
You can’t perform that action at this time.
0 commit comments