Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyagreco committed May 27, 2024
1 parent 51afe17 commit 212b755
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -160,3 +160,4 @@ cython_debug/
#.idea/

*_dnm.py
*_dnc.py
12 changes: 7 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
PY_CMD=python3.10

.PHONY: deps-dev
deps-dev:
@python3.10 -m pip install -r requirements.dev.txt
@$(PY_CMD) -m pip install -r requirements.dev.txt

.PHONY: deps
deps: deps-dev
@python3.10 -m pip install -r requirements.txt
@$(PY_CMD) -m pip install -r requirements.txt


.PHONY: fmt
Expand All @@ -31,13 +33,13 @@ test-e2e:
pkg-build:
@rm -rf build
@rm -rf dist
@python3 setup.py sdist bdist_wheel
$(PY_CMD) setup.py sdist bdist_wheel

.PHONY: pkg-test
pkg-test:
@python3 -m twine upload --repository testpypi dist/*
@$(PY_CMD) -m twine upload --repository testpypi dist/*


.PHONY: pkg-prod
pkg-prod:
@python3 -m twine upload dist/*
@$(PY_CMD) -m twine upload dist/*

0 comments on commit 212b755

Please sign in to comment.