From 5a293c23a94903a9c207569b8fc51a8add2f6b8b Mon Sep 17 00:00:00 2001 From: schollii Date: Tue, 27 Dec 2016 15:57:12 -0500 Subject: [PATCH] CHG: release number ADD: test for python 3.6 --- docs/changelog.rst | 2 +- release.bat | 4 ++-- src/pubsub/__init__.py | 2 +- tox.ini | 11 +++++++---- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 5a71442..3b1b8f4 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,7 +3,7 @@ Changelog High-level changelog. For details, consult the SVN logs. -:4.0.0 (Nov 2016): +:4.0.0 (Dec 2016): * Support Python 3.5 * Distribution via wheel diff --git a/release.bat b/release.bat index dbf03d4..4c377e0 100644 --- a/release.bat +++ b/release.bat @@ -3,7 +3,7 @@ echo off REM Run this script: it indicates specific steps to follow, REM and generates the distributions. REM -REM Oliver, Dec 2015 +REM Oliver, Dec 2016 echo ============================================================== echo Before continuing, consult the instructions in Release @@ -14,7 +14,7 @@ python setup.py sdist echo ============================================================== echo Creating wheel distribution: -python setup.py sdist bdist_wheel +python setup.py bdist_wheel echo ============================================================== echo To UPLOAD the dist/* distributions to PyPi, press ENTER, diff --git a/src/pubsub/__init__.py b/src/pubsub/__init__.py index 142736d..adc737d 100644 --- a/src/pubsub/__init__.py +++ b/src/pubsub/__init__.py @@ -8,7 +8,7 @@ _PREVIOUS_RELEASE_DATE = "2014-02-01" _PREVIOUS_RELEASE_VER = "3.3.0" -__version__ = "4.0.0rc8" +__version__ = "4.0.0" __all__ = [ 'pub', diff --git a/tox.ini b/tox.ini index 2c5ea74..5248b8d 100644 --- a/tox.ini +++ b/tox.ini @@ -4,19 +4,17 @@ # and then run "tox" from this directory. [tox] -envlist = py33, py34, py35 +envlist = py33, py34, py35, py36 toxworkdir=/.tox/pypubsub [testenv] usedevelop = True changedir = tests/suite -commands = - py.test +commands = py.test install_command = pip install {opts} {packages} --trusted-host pypi.python.org deps = pytest - typing [testenv:py33] deps = @@ -26,3 +24,8 @@ deps = pathlib weakrefmethod +[testenv:py34] +deps = + pytest + typing +