Skip to content

Commit 9d32480

Browse files
committed
Enabled building and storing artifacts on CircleCI
1 parent f809d36 commit 9d32480

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.circleci/config.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,16 @@ jobs:
3939
- ./venv
4040
key: v1-dependencies-{{ checksum ".circleci/requirements.txt" }}
4141

42+
- run:
43+
name: build wheel
44+
command: |
45+
. venv/bin/activate
46+
python -m build -nwx .
47+
48+
- store_artifacts:
49+
path: dist
50+
destination: dist
51+
4252
- run:
4353
name: run tests
4454
command: |

.circleci/requirements.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,8 @@ tox
33
numpy
44
pandas
55
wcwidth
6+
setuptools
7+
pip
8+
build
9+
wheel
10+
setuptools_scm

0 commit comments

Comments
 (0)