diff --git a/MANIFEST b/MANIFEST index 5b3176209..2919e5156 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,5 +1,5 @@ MANIFEST -py/test/plugin/pytest_terminal.py +py/__init__.py setup.py .hgignore .hgtags @@ -61,7 +61,6 @@ example/pytest/test_failures.py example/pytest/test_setup_flow_example.py ez_setup.py py/LICENSE -py/__init__.py py/_com.py py/bin/_findpy.py py/bin/_genscripts.py @@ -331,6 +330,7 @@ py/test/plugin/pytest_restdoc.py py/test/plugin/pytest_resultdb.py py/test/plugin/pytest_resultlog.py py/test/plugin/pytest_runner.py +py/test/plugin/pytest_terminal.py py/test/plugin/pytest_tmpdir.py py/test/plugin/pytest_unittest.py py/test/plugin/pytest_xfail.py diff --git a/py/__init__.py b/py/__init__.py index e177d9a4e..f70ee1994 100644 --- a/py/__init__.py +++ b/py/__init__.py @@ -19,7 +19,7 @@ For questions please check out http://pylib.org/contact.html """ from initpkg import initpkg -version = "1.0.x" +version = "1.0.0b4" initpkg(__name__, description = "py.test and pylib: advanced testing tool and networking lib", @@ -31,7 +31,7 @@ initpkg(__name__, author_email = "holger at merlinux.eu, py-dev at codespeak.net", long_description = globals()['__doc__'], classifiers = [ - "Development Status :: 5 - Stable", + "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: POSIX", diff --git a/setup.py b/setup.py index a1b14ea9d..1408149ac 100644 --- a/setup.py +++ b/setup.py @@ -2,9 +2,8 @@ autogenerated by gensetup.py setup file for 'py' package based on: -tags: tip branch: 1.0.x -revision: 1173:33348724fd55e40d1dfaab26575811a1ecdd38f1 +revision: 1177:a0d05417421b8cc68c8ba1a96a7fd3087116e472 """ import os, sys @@ -37,7 +36,7 @@ def main(): name='py', description='py.test and pylib: advanced testing tool and networking lib', long_description = long_description, - version='1.0.x', + version='1.0.0b4', url='http://pylib.org', license='MIT license', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'], @@ -51,7 +50,7 @@ def main(): 'py.svnwcrevert = py.cmdline:pysvnwcrevert', 'py.test = py.cmdline:pytest', 'py.which = py.cmdline:pywhich']}, - classifiers=['Development Status :: 5 - Stable', + classifiers=['Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: POSIX',