Skip to content

Commit 599cb45

Browse files
committed
-
1 parent 65894df commit 599cb45

File tree

4 files changed

+9
-209
lines changed

4 files changed

+9
-209
lines changed

README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ If you want to be informed on new releases of the Python Toolbox, sign up for
5656

5757
# Python versions #
5858

59-
The Python Toolbox supports Python versions 2.5, 2.6 and 2.7.
59+
The Python Toolbox supports Python versions 2.6 and 2.7.
6060

6161
It's tested on both CPython and PyPy.
6262

python_toolbox/third_party/abc.py

Lines changed: 0 additions & 201 deletions
This file was deleted.

python_toolbox/third_party/abcs_collection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
bootstrapping issues. Unit tests are in test_collections.
1111
"""
1212

13-
from .abc import ABCMeta, abstractmethod
13+
from abc import ABCMeta, abstractmethod
1414
import sys
1515

1616
__all__ = ["Hashable", "Iterable", "Iterator",

setup.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@
1212
### Confirming correct Python version: ########################################
1313
# #
1414
if sys.version_info[0] >= 3:
15-
raise Exception("Python 3.x is not supported")
16-
if sys.version_info[1] <= 4:
15+
raise Exception("Python 3.x is not supported, only Python 2.6 and Python "
16+
"2.7.")
17+
if sys.version_info[1] <= 5:
1718
raise Exception(
18-
"You're using Python <=2.4, but this package requires Python 2.5 and "
19-
"upwards, so you can't use it unless you upgrade your Python version."
19+
"You're using Python <=2.5, but this package requires either Python "
20+
"2.6 or Python 2.7, so you can't use it unless you upgrade your "
21+
"Python version."
2022
)
2123
# #
2224
### Finished confirming correct Python version. ###############################
@@ -121,7 +123,6 @@ def get_packages():
121123
'License :: OSI Approved :: MIT License',
122124
'Operating System :: OS Independent',
123125
'Programming Language :: Python',
124-
'Programming Language :: Python :: 2.5',
125126
'Programming Language :: Python :: 2.6',
126127
'Programming Language :: Python :: 2.7',
127128
'Topic :: Software Development :: Libraries :: Python Modules',
@@ -131,7 +132,7 @@ def get_packages():
131132

132133
setuptools.setup(
133134
name='python_toolbox',
134-
version='0.3',
135+
version='0.4',
135136
requires=['distribute'],
136137
test_suite='nose.collector',
137138
install_requires=['distribute'],

0 commit comments

Comments
 (0)