Skip to content

Commit 89b0433

Browse files
committed
update ci config
1 parent 3bfafa7 commit 89b0433

File tree

1 file changed

+3
-18
lines changed

1 file changed

+3
-18
lines changed

.circleci/config.yml

Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
test-python:
88
# Install dependencies and run tests
99
docker:
10-
- image: cimg/python:3.8-node
10+
- image: cimg/python:3.9-node
1111
steps:
1212
- checkout
1313
- python/install-packages:
14-
pkg-manager: pip-dist
14+
pkg-manager: pip
1515
- run:
1616
name: Run tests
1717
command: pytest --junitxml=junit.xml || ((($? == 5)) && echo 'Did not find any tests to run.')
@@ -20,7 +20,7 @@ jobs:
2020
build-package:
2121
# build python package
2222
docker:
23-
- image: cimg/python:3.8-node
23+
- image: cimg/python:3.9-node
2424
steps:
2525
- checkout
2626
- run:
@@ -30,25 +30,10 @@ jobs:
3030
- store_artifacts:
3131
path: dist
3232
destination: ~/artifacts
33-
deploy:
34-
# This is an example deploy job, not actually used by the workflow
35-
docker:
36-
- image: cimg/base:stable
37-
steps:
38-
# Replace this with steps to deploy to users
39-
- run:
40-
name: deploy
41-
command: '#e.g. ./deploy.sh'
42-
- run:
43-
name: found github actions config
44-
command: ':'
4533
workflows:
4634
build-and-test:
4735
jobs:
4836
- test-python
4937
- build-package:
5038
requires:
5139
- test-python
52-
# - deploy:
53-
# requires:
54-
# - build-package

0 commit comments

Comments
 (0)