From 0b386c674bd7b25393552f37e401ca5fcafa84c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20David=20Ib=C3=A1=C3=B1ez?= Date: Sun, 30 Sep 2018 12:55:32 +0200 Subject: [PATCH] Drop support for Python 3.3 --- .travis.yml | 1 - README.rst | 2 +- appveyor.yml | 4 ---- docs/index.rst | 2 +- docs/install.rst | 2 +- tox.ini | 2 +- 6 files changed, 4 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index bbcc62a6c..9597f8fcf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ language: python python: - "2.7" - - "3.3" - "3.4" - "3.5" - "3.6" diff --git a/README.rst b/README.rst index 36de8156a..c0229282c 100644 --- a/README.rst +++ b/README.rst @@ -3,7 +3,7 @@ pygit2 - libgit2 bindings in Python ###################################################################### Pygit2 is a set of Python bindings to the libgit2 shared library, libgit2 -implements Git plumbing. Pygit2 works with Python 2.7, 3.3 - 3.7 and PyPy 2.6 +implements Git plumbing. Pygit2 works with Python 2.7, 3.4 - 3.7 and PyPy 2.6 .. image:: https://travis-ci.org/libgit2/pygit2.svg?branch=master :target: http://travis-ci.org/libgit2/pygit2 diff --git a/appveyor.yml b/appveyor.yml index 02c45b7c6..46a72a30d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,10 +11,6 @@ environment: PYTHON: 'C:\Python27\python.exe' - GENERATOR: 'Visual Studio 10 Win64' PYTHON: 'C:\Python27-x64\python.exe' - - GENERATOR: 'Visual Studio 10' - PYTHON: 'C:\Python33\python.exe' - - GENERATOR: 'Visual Studio 10 Win64' - PYTHON: 'C:\Python33-x64\python.exe' - GENERATOR: 'Visual Studio 10' PYTHON: 'C:\Python34\python.exe' - GENERATOR: 'Visual Studio 10 Win64' diff --git a/docs/index.rst b/docs/index.rst index 4c39922f0..45a5a1e92 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -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 2.7, 3.3 - 3.7 and pypy. +implements the core of Git. Pygit2 works with Python 2.7, 3.4 - 3.7 and pypy. Links: diff --git a/docs/install.rst b/docs/install.rst index 46d5c4985..1203fe431 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -13,7 +13,7 @@ Installation Requirements ============ -- Python 2.7, 3.3+ or PyPy 2.6+ (including the development headers) +- Python 2.7, 3.4+ or PyPy 2.6+ (including the development headers) - Libgit2 v0.26.x - cffi 1.0+ - six diff --git a/tox.ini b/tox.ini index 67b3a4fbf..a46e15153 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27,py33,py34,py35,py36,pypy,pypy3 +envlist = py27,py34,py35,py36,py37,pypy,pypy3 [testenv] deps = six