Skip to content

Commit 2973a55

Browse files
committed
don't push dists from Make
1 parent 65603e1 commit 2973a55

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

HISTORY.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
History
33
=======
44

5-
0.8.4 (2017-06-24)
5+
0.8.5 (2017-07-09)
66
------------------
77

88
* First release on PyPI.

Makefile

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: clean clean-test clean-pyc clean-build clean-venv docs help install dist release test test-all
1+
.PHONY: clean clean-test clean-pyc clean-build clean-venv docs help install dist test test-all
22
.DEFAULT_GOAL := help
33
define BROWSER_PYSCRIPT
44
import os, webbrowser, sys
@@ -58,6 +58,7 @@ lint: venv ## check style with flake8
5858
venv/bin/python -m flake8 rust_pypi_example tests
5959

6060
test: venv ## This will use py.test because of pytest-runner
61+
venv/bin/python setup.py build_ext
6162
venv/bin/python setup.py check
6263
venv/bin/python setup.py test
6364

@@ -87,16 +88,14 @@ docs: venv ## generate Sphinx HTML documentation, including API docs
8788
servedocs: venv docs ## compile the docs watching for changes
8889
venv/bin/python -m watchmedo shell-command -p '*.rst' -c '$(MAKE) -C docs html' -R -D .
8990

90-
release: venv clean ## package and upload a release
91-
venv/bin/python setup.py sdist upload
92-
venv/bin/python setup.py bdist_wheel upload
93-
9491
dist: venv clean ## builds source and wheel package
9592
venv/bin/python setup.py sdist
93+
venv/bin/python setup.py build_ext
9694
venv/bin/python setup.py bdist_wheel
9795
ls -l dist
9896

9997
install: venv clean ## install the package to the active Python's site-packages
98+
venv/bin/python setup.py build_ext
10099
venv/bin/python setup.py install
101100

102101

0 commit comments

Comments
 (0)