Skip to content

Commit ea2f334

Browse files
committed
-
1 parent ef07e4a commit ea2f334

File tree

11 files changed

+9
-2930
lines changed

11 files changed

+9
-2930
lines changed

source_py2/python_toolbox/_bootstrap/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@
33

44
'''A bootstrap package for `python_toolbox`. See module `bootstrap` here.'''
55

6-
from . import bootstrap
7-
from . import bootstrap_py2exe
6+
from . import bootstrap

source_py2/python_toolbox/_bootstrap/bootstrap.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
raise Exception("This is a Python 2.x distribution of `python_toolbox`, "
1010
"and you're using Python 3.x. Please get the Python 3.x "
1111
"distribution.")
12-
if sys.version_info[1] <= 5:
12+
if sys.version_info[1] <= 6:
1313
raise Exception(
14-
"You're using Python <= 2.5, but this package requires either Python "
15-
"2.6 or Python 2.7, (or Python 3.3+ on a different distribution,) so "
16-
"you can't use it unless you upgrade your Python version."
14+
"You're using Python <= 2.6, but this package requires Python 2.7, "
15+
"(or Python 3.3+ on a different distribution,) so you can't use it "
16+
"unless you upgrade your Python version."
1717
)
1818
# #
1919
### Finished confirming correct Python version. ###############################

source_py2/python_toolbox/_bootstrap/bootstrap_py2exe/__init__.py

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

0 commit comments

Comments
 (0)