Skip to content

Commit a894a84

Browse files
authored
Merge pull request #113 from toabctl/drop-setuptools-markdown
2 parents 5dd7f4c + dd852df commit a894a84

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ def setup_package():
1919
setup_requires=[
2020
'six',
2121
'pyscaffold>=2.5.10,<2.6a0',
22-
'setuptools-markdown',
2322
] + sphinx,
24-
long_description_markdown_filename='README.md',
23+
long_description='README.md',
24+
long_description_content_type="text/markdown",
2525
use_pyscaffold=True
2626
)
2727

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)