We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2544181 commit c31616cCopy full SHA for c31616c
Makefile
@@ -51,5 +51,7 @@ sdist: clean compile test sdist-libuv
51
$(PYTHON) setup.py sdist
52
53
54
-release: distclean compile test sdist-libuv
+# Don't change "clean" to "distclean"! Otherwise "clean-libuv" will
55
+# only be called once, which will produce a broken sdist.
56
+release: clean compile test sdist-libuv
57
$(PYTHON) setup.py sdist bdist_wheel upload
setup.py
@@ -20,7 +20,7 @@
20
from setuptools.command.build_ext import build_ext
21
22
23
-VERSION = '0.6.1'
+VERSION = '0.6.5'
24
CFLAGS = ['-O2']
25
LIBUV_DIR = os.path.join(os.path.dirname(__file__), 'vendor', 'libuv')
26
0 commit comments