Skip to content

Commit fa89615

Browse files
committed
chore(ver): bump 2.0.0.dev1-->2.1.0.dev3, and more
+ chore(deps): + smmap2-v2.1.0.dev4 (FIXes memoryview leak). + FIX quoted environment marker in requirements. + import actually smmap2!
1 parent 40199ba commit fa89615

File tree

4 files changed

+7
-14
lines changed

4 files changed

+7
-14
lines changed

Diff for: gitdb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
__author__ = "Sebastian Thiel"
1111
__contact__ = "[email protected]"
1212
__homepage__ = "https://github.com/gitpython-developers/gitdb"
13-
version_info = (2, 1, 0, 'dev1')
13+
version_info = (2, 1, 0, 'dev3')
1414
__version__ = '.'.join(str(i) for i in version_info)
1515

1616

Diff for: gitdb/test/test_pack.py

-5
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,6 @@ def test_pack(self):
139139
self._assert_pack_file(pack, version, size)
140140
# END for each pack to test
141141

142-
## Unless HIDE_WINDOWS_KNOWN_ERRORS, on Windows fails with:
143-
# File "D:\Work\gitdb.git\gitdb\util.py", line 141, in onerror
144-
# func(path) # Will scream if still not possible to delete.
145-
# PermissionError: [WinError 32] The process cannot access the file
146-
# because it is being used by another process: 'sss\\index_cc_wll5'
147142
@with_rw_directory
148143
def test_pack_entity(self, rw_dir):
149144
pack_objs = []

Diff for: requirements.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
contextlib2; python_version <= "2.7"
2-
#smmap>=2.1.0
1+
contextlib2; python_version<='2.7'
2+
#smmap2>=2.1.0
33

4-
## DEV-requirements (FIXME: remove on release)
5-
-e git+https://github.com/ankostis/[email protected].dev1#egg=smmap
4+
## DEV-requirement: FIX memleak (FIXME: remove on release)
5+
-e git+https://github.com/ankostis/[email protected].dev4#egg=smmap2

Diff for: setup.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,8 @@
2020
packages=('gitdb', 'gitdb.db', 'gitdb.utils', 'gitdb.test'),
2121
license="BSD License",
2222
zip_safe=False,
23-
install_requires=['smmap2 >= 2.1.0'],
24-
extras_require={
25-
':python_version <= "2.7"': ['contextlib2'],
26-
},
23+
install_requires=['smmap2 >= 2.0.0'],
24+
extras_require={':python_version=="2.7"': ['contextlib2']},
2725
long_description="""GitDB is a pure-Python git object database""",
2826
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
2927
classifiers=[

0 commit comments

Comments
 (0)