addresses issue209 - avoid error messages from pip on python2.4 related to file, however, never be imported with this interpreter

This commit is contained in:
holger krekel 2012-11-06 09:08:54 +01:00
parent b3c8991b22
commit 002c5072af
3 changed files with 3 additions and 3 deletions

View File

@ -1,2 +1,2 @@
#
__version__ = '2.3.3.dev1'
__version__ = '2.3.3.dev2'

View File

@ -34,7 +34,7 @@ else:
PYTEST_TAG = "%s-%s%s-PYTEST" % (impl, ver[0], ver[1])
del ver, impl
PYC_EXT = ".py" + ("c" if __debug__ else "o")
PYC_EXT = ".py" + (__debug__ and "c" or "o")
PYC_TAIL = "." + PYTEST_TAG + PYC_EXT
REWRITE_NEWLINES = sys.version_info[:2] != (2, 7) and sys.version_info < (3, 2)

View File

@ -24,7 +24,7 @@ def main():
name='pytest',
description='py.test: simple powerful testing with Python',
long_description = long_description,
version='2.3.3.dev1',
version='2.3.3.dev2',
url='http://pytest.org',
license='MIT license',
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],