Skip to content

Commit

Permalink
Merge pull request #89 from avi-jois/release_wheel
Browse files Browse the repository at this point in the history
[Build] Add wheel to release
  • Loading branch information
fabricematrat authored Dec 6, 2023
2 parents f8f25c1 + 0039777 commit f479365
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ help:
@echo 'make lint - Run linter and pep8.'
@echo 'make check - Run all the tests and lint in all supported scenarios.'
@echo 'make source - Create source package.'
@echo 'make wheel - Create wheel package.'
@echo 'make clean - Get rid of bytecode files, build and dist dirs, venvs.'
@echo 'make release - Register and upload a release on PyPI.'
@echo -e '\nAfter creating the development environment with "make", it is'
Expand All @@ -79,7 +80,7 @@ lint: setup

.PHONY: release
release: check
$(PYTHON) setup.py register sdist upload
$(PYTHON) setup.py register sdist bdist_wheel upload

.PHONY: setup
setup: $(SYSDEPS_INSTALLED) $(DEVENVPIP) setup.py
Expand All @@ -88,6 +89,10 @@ setup: $(SYSDEPS_INSTALLED) $(DEVENVPIP) setup.py
source:
$(PYTHON) setup.py sdist

.PHONY: wheel
wheel:
$(PYTHON) setup.py bdist_wheel

.PHONY: sysdeps
sysdeps: $(SYSDEPS_INSTALLED)

Expand Down

0 comments on commit f479365

Please sign in to comment.