Skip to content

Commit

Permalink
CHG: release number
Browse files Browse the repository at this point in the history
ADD: test for python 3.6
  • Loading branch information
schollii committed Dec 27, 2016
1 parent aaddf37 commit 5a293c2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions release.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/pubsub/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
11 changes: 7 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand All @@ -26,3 +24,8 @@ deps =
pathlib
weakrefmethod

[testenv:py34]
deps =
pytest
typing

0 comments on commit 5a293c2

Please sign in to comment.