Skip to content

Commit 2b90601

Browse files
committed
Update version to 0.10.0 for release
Also update some more package metadata. Switch from author to maintainer for info and point it at the [email protected] listhost. No offense is meant to JP, but he has not been actively involved in the project for some time. For this reason, it no longer seems reasonable for him to be listed in the package metadata.
1 parent a88b336 commit 2b90601

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

docs/changelog.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ nose2 uses semantic versioning (currently in 0.x) and the popular
77
Unreleased
88
----------
99

10+
0.10.0
11+
------
12+
1013
Added
1114
~~~~~
1215

nose2/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# The following line *must* be the last in the module, exactly as formatted:
55
# could also use advice from
66
# https://packaging.python.org/guides/single-sourcing-package-version/
7-
__version__ = '0.9.2'
7+
__version__ = "0.10.0"

setup.py

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,10 @@
55

66
VERSION = open("nose2/_version.py").readlines()[-1].split()[-1].strip("\"'")
77

8-
# TODO: potentially change author?
9-
AUTHOR = "Jason Pellerin"
10-
AUTHOR_EMAIL = "[email protected]"
11-
12-
py_version = sys.version_info
13-
8+
MAINTAINER = "nose2 devs"
9+
MAINTAINER_EMAIL = "[email protected]"
1410

11+
PY_VERSION = "%s.%s" % (sys.version_info.major, sys.version_info.minor)
1512
LONG_DESCRIPTION = open(os.path.join(os.path.dirname(__file__), "README.rst")).read()
1613

1714
setup(
@@ -41,15 +38,15 @@
4138
entry_points={
4239
"console_scripts": [
4340
"nose2 = nose2:discover",
44-
"nose2-%s.%s = nose2:discover" % (py_version.major, py_version.minor),
41+
"nose2-%s = nose2:discover" % PY_VERSION,
4542
]
4643
},
4744
test_suite="unittest.collector",
4845
# descriptive package info below
4946
description="unittest2 with plugins, the succesor to nose",
5047
long_description=LONG_DESCRIPTION,
51-
author=AUTHOR,
52-
author_email=AUTHOR_EMAIL,
48+
maintainer=MAINTAINER,
49+
maintainer_email=MAINTAINER_EMAIL,
5350
url="https://github.com/nose-devs/nose2",
5451
classifiers=[
5552
"Development Status :: 4 - Beta",

0 commit comments

Comments
 (0)