Skip to content

Commit d10b10f

Browse files
committed
ci: use 'next-gen' circleci images
1 parent 7870227 commit d10b10f

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.circleci/config.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ version: 2
22
jobs:
33
test:
44
docker:
5-
- image: circleci/python:3.9
5+
- image: cimg/python:3.9
66
steps:
77
- checkout
88
- run: pip install tox
99
- run: tox
1010

1111
build_dist:
1212
docker:
13-
- image: circleci/python:3.9
13+
- image: cimg/python:3.9
1414
steps:
1515
- checkout
16-
- run: sudo pip install build twine setuptools-scm
16+
- run: pip install build twine setuptools-scm
1717
- run:
1818
# https://github.com/pypa/setuptools_scm/issues/455
1919
command: |
@@ -27,25 +27,25 @@ jobs:
2727

2828
test_pypi_publish:
2929
docker:
30-
- image: circleci/python:3.9
30+
- image: cimg/python:3.9
3131
steps:
3232
- attach_workspace:
3333
at: /tmp/workspace
34-
- run: sudo pip install twine
34+
- run: pip install twine
3535
- run: twine upload --repository testpypi /tmp/workspace/dist/*
3636

3737
pypi_publish:
3838
docker:
39-
- image: circleci/python:3.9
39+
- image: cimg/python:3.9
4040
steps:
4141
- attach_workspace:
4242
at: /tmp/workspace
43-
- run: sudo pip install twine
43+
- run: pip install twine
4444
- run: twine upload /tmp/workspace/dist/*
4545

4646
docker_build:
4747
docker:
48-
- image: circleci/buildpack-deps:stretch
48+
- image: cimg/base:current
4949
steps:
5050
- checkout
5151
- setup_remote_docker:
@@ -62,7 +62,7 @@ jobs:
6262

6363
docker_push:
6464
docker:
65-
- image: circleci/buildpack-deps:stretch
65+
- image: cimg/base:current
6666
steps:
6767
- run: test -n "$CIRCLE_TAG"
6868
- attach_workspace:

0 commit comments

Comments
 (0)