Skip to content

Commit 86c2dfc

Browse files
author
John Wu
committed
init versioning control with Pixi and makefiles
1 parent 347efa8 commit 86c2dfc

File tree

3 files changed

+1358
-78
lines changed

3 files changed

+1358
-78
lines changed

makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,14 @@ wheel: $(DIST_DIR)
5757
clean:
5858
@echo "removing target: $(TARG_DIR)"
5959
@rm -fr $(TARG_DIR)
60+
61+
62+
# upload to test PyPI
63+
.PHONY: upload-test
64+
upload-test: wheel
65+
@PX_DIST_DIR=$(DIST_DIR) pixi run -e build-pypi upload-test
66+
67+
# upload to PyPI
68+
.PHONY: upload
69+
upload: wheel
70+
@PX_DIST_DIR=$(DIST_DIR) pixi run -e build-pypi upload

0 commit comments

Comments
 (0)