Skip to content

Commit 4816a32

Browse files
committed
bump version, fix tox.ini
1 parent 86f955c commit 4816a32

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1.2.dev
1+
1.2
22
----------------------------------------
33

44
- Allow to import from Aliasmodules (thanks Ralf Schmitt)

apipkg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import sys
1010
from types import ModuleType
1111

12-
__version__ = '1.2.dev7'
12+
__version__ = '1.2'
1313

1414
def initpkg(pkgname, exportdefs, attr=dict()):
1515
""" initialize given package from the export definitions. """

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def main():
1919
description=
2020
'apipkg: namespace control and lazy-import mechanism',
2121
long_description = open('README.txt').read(),
22-
version='1.2.dev7',
22+
version='1.2',
2323
url='http://bitbucket.org/hpk42/apipkg',
2424
license='MIT License',
2525
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
@@ -38,4 +38,4 @@ def main():
3838
)
3939

4040
if __name__ == '__main__':
41-
main()
41+
main()

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ sdistsrc={distshare}/apipkg-*
66

77
[testenv]
88
commands=py.test --junitxml={envlogdir}/junit-{envname}.xml []
9-
deps= py
9+
deps= pytest

0 commit comments

Comments
 (0)