Skip to content

Commit dd852df

Browse files
committed
Drop support for Python 3.6
These days pygit2 requires Python >= 3.7: https://pypi.org/project/pygit2/ So reluctantly drop support for 3.6. If anyone can figure out a way of bringing it back (e.g. via using old versions of pygit2 where necessary), we could consider doing that.
1 parent 34c9769 commit dd852df

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ virt: lxd
33
language: python
44
matrix:
55
include:
6-
- python: 3.6
7-
env: TOX_ENV=py36
86
- python: 3.7
97
env: TOX_ENV=py37
108
- python: 3.8

INSTALL.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ Before you pick an option, it is very important to consider that [only
1111
certain combinations of libgit2 and pygit2 will work
1212
together](http://www.pygit2.org/install.html#version-numbers).
1313

14-
Also, Python 2.x is no longer supported for `git-deps`, although as of
15-
April 2021 it may still work if you are lucky and know what you are
16-
doing.
14+
Also, Python < 3.7 is no longer supported for `git-deps` (since pygit2
15+
requires 3.7 or higher).
1716

1817
## Option 0 (easiest): let `pip` take care of everything
1918

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[tox]
55
minversion = 1.8
6-
envlist = py36,py37,py38,flake8
6+
envlist = py37,py38,flake8
77
skip_missing_interpreters = True
88

99
[testenv]

0 commit comments

Comments
 (0)