Skip to content

Commit

Permalink
Enabled building and storing artifacts on CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
KOLANICH committed May 20, 2022
1 parent f809d36 commit 9d32480
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,16 @@ jobs:
- ./venv
key: v1-dependencies-{{ checksum ".circleci/requirements.txt" }}

- run:
name: build wheel
command: |
. venv/bin/activate
python -m build -nwx .
- store_artifacts:
path: dist
destination: dist

- run:
name: run tests
command: |
Expand Down
5 changes: 5 additions & 0 deletions .circleci/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,8 @@ tox
numpy
pandas
wcwidth
setuptools
pip
build
wheel
setuptools_scm

0 comments on commit 9d32480

Please sign in to comment.