Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 9e47352

Browse filesBrowse files
committed
Add support for Python 3.8
1 parent e4a83ff commit 9e47352
Copy full SHA for 9e47352

File tree

4 files changed

+5
-3
lines changed
Filter options

4 files changed

+5
-3
lines changed

‎.travis.yml

Copy file name to clipboardExpand all lines: .travis.yml
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ python:
44
- "3.5"
55
- "3.6"
66
- "3.7"
7+
- "3.8"
78
- "nightly"
89
# - "pypy" - won't work as smmap doesn't work (see gitdb/.travis.yml for details)
910
matrix:

‎README.md

Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If it is not in your `PATH`, you can help GitPython find it by setting
1919
the `GIT_PYTHON_GIT_EXECUTABLE=<path/to/git>` environment variable.
2020

2121
* Git (1.7.x or newer)
22-
* Python 3.4 to 3.7.
22+
* Python >= 3.4
2323

2424
The list of dependencies are listed in `./requirements.txt` and `./test-requirements.txt`.
2525
The installer takes care of installing them for you.

‎setup.py

Copy file name to clipboardExpand all lines: setup.py
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ def _stamp_version(filename):
105105
"Programming Language :: Python :: 3.4",
106106
"Programming Language :: Python :: 3.5",
107107
"Programming Language :: Python :: 3.6",
108-
"Programming Language :: Python :: 3.7"
108+
"Programming Language :: Python :: 3.7",
109+
"Programming Language :: Python :: 3.8"
109110
]
110111
)

‎tox.ini

Copy file name to clipboardExpand all lines: tox.ini
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py34,py35,py36,py37,flake8
2+
envlist = py34,py35,py36,py37,py38,flake8
33

44
[testenv]
55
commands = nosetests {posargs}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.