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:
parent
b3c8991b22
commit
002c5072af
|
@ -1,2 +1,2 @@
|
|||
#
|
||||
__version__ = '2.3.3.dev1'
|
||||
__version__ = '2.3.3.dev2'
|
||||
|
|
|
@ -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)
|
||||
|
|
2
setup.py
2
setup.py
|
@ -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'],
|
||||
|
|
Loading…
Reference in New Issue