Skip to content

Commit 857196a

Browse files
committed
Drop support for EOL Python
1 parent 3e71833 commit 857196a

File tree

3 files changed

+2
-9
lines changed

3 files changed

+2
-9
lines changed

.travis.yml

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
language: python
22
python:
3-
- "2.6"
43
- "2.7"
5-
- "3.3"
64
- "3.4"
75
- "3.5"
86
- "3.6"

gitdb/util.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,7 @@
1919

2020
# initialize our global memory manager instance
2121
# Use it to free cached (and unused) resources.
22-
if sys.version_info < (2, 6):
23-
mman = StaticWindowMapManager()
24-
else:
25-
mman = SlidingWindowMapManager()
22+
mman = SlidingWindowMapManager()
2623
# END handle mman
2724

2825
import hashlib

setup.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
zip_safe=False,
2323
install_requires=['smmap2 >= 2.0.0'],
2424
long_description="""GitDB is a pure-Python git object database""",
25+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
2526
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
2627
classifiers=[
2728
"Development Status :: 5 - Production/Stable",
@@ -34,11 +35,8 @@
3435
"Operating System :: MacOS :: MacOS X",
3536
"Programming Language :: Python",
3637
"Programming Language :: Python :: 2",
37-
"Programming Language :: Python :: 2.6",
3838
"Programming Language :: Python :: 2.7",
3939
"Programming Language :: Python :: 3",
40-
"Programming Language :: Python :: 3.2",
41-
"Programming Language :: Python :: 3.3",
4240
"Programming Language :: Python :: 3.4",
4341
"Programming Language :: Python :: 3.5",
4442
]

0 commit comments

Comments
 (0)