diff options
| author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-28 09:34:53 +0200 |
|---|---|---|
| committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-28 14:34:30 +0200 |
| commit | 49638411cbf47c44e75e72a5d3a3fa20c0c298e8 (patch) | |
| tree | 60e2164da9d11ab3b658b0ad6a0f40edb173782f | |
| parent | 6e5e30877899ca0d503ce082eab780956259e191 (diff) | |
| download | gitdb-2.1.1.dev0.tar.gz | |
chore(ver): bump v2.1.0.dev1 --> 2.1.1.dev0v2.1.1.dev0
+ travis: depend on smmap2-v2.1.1.dev0
+ fix leaks_memview:
+ smmap2: yes
+ gitdb2: no
| -rw-r--r-- | .appveyor.yml | 2 | ||||
| -rw-r--r-- | .travis.yml | 6 | ||||
| -rw-r--r-- | gitdb/__init__.py | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index bfc5eff..93e02fa 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -38,7 +38,7 @@ install: git config --global user.name "Travis Runner" ## Install any dev-requirements (FIXME: remove on release) - - pip install -I git+https://github.com/ankostis/smmap.git@v2.1.0.dev1 + - pip install -I git+https://github.com/ankostis/smmap.git@v2.1.1.dev0 - pip install -r requirements.txt build: false diff --git a/.travis.yml b/.travis.yml index 2f8e407..0d28ee6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,11 +12,11 @@ git: depth: 1000 install: - pip install coveralls - + ## Install any dev-requirements (FIXME: remove on release) - - pip install -I git+https://github.com/ankostis/smmap.git@v2.1.0.dev1 + - pip install -I git+https://github.com/ankostis/smmap.git@v2.1.1.dev0 - pip install -r requirements.txt -script: +script: - ulimit -n 48 - ulimit -n - nosetests -v --with-coverage diff --git a/gitdb/__init__.py b/gitdb/__init__.py index 33229ce..010faa3 100644 --- a/gitdb/__init__.py +++ b/gitdb/__init__.py @@ -10,7 +10,7 @@ import os __author__ = "Sebastian Thiel" __contact__ = "byronimo@gmail.com" __homepage__ = "https://github.com/gitpython-developers/gitdb" -version_info = (2, 1, 0, 'dev1') +version_info = (2, 1, 1, 'dev0') __version__ = '.'.join(str(i) for i in version_info) |
