Skip to content

Commit

Permalink
Python 3.8 support
Browse files Browse the repository at this point in the history
Fixes issue #918
  • Loading branch information
jdavid committed Oct 9, 2019
1 parent 5b015f7 commit f5d1e7b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ python:
- "3.5"
- "3.6"
- "3.7"
- "3.8-dev"
- "pypy3.5-6.0"

env:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
- Drop Python 2.7 support, six no longer required
`#941 <https://github.com/libgit2/pygit2/issues/941>`_

- Add Python 3.8 support
`#918 <https://github.com/libgit2/pygit2/issues/918>`_

- New support for ``/`` operator to traverse trees
`#903 <https://github.com/libgit2/pygit2/pull/903>`_

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Welcome to pygit2's documentation!
==================================

Pygit2 is a set of Python bindings to the libgit2 shared library, libgit2
implements the core of Git. Pygit2 works with Python 3.4 - 3.7 and pypy.
implements the core of Git. Pygit2 works with Python 3.4 - 3.8 and pypy.

Links:

Expand Down
2 changes: 1 addition & 1 deletion docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Requirements

Supported versions of Python:

- Python 3.4 - 3.7
- Python 3.4 - 3.8
- PyPy 3.5

Python requirements (these are specified in ``setup.py``):
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ def get_file_list(self):
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Version Control"]
Expand Down

0 comments on commit f5d1e7b

Please sign in to comment.