Skip to content

Commit e44a316

Browse files
author
Will Myers
authored
Update cPython official cPython support (#36)
* Remove support for 2.6, 3.{2,3} * Add python 3.7 support * Update CHANGELOG * Update CHANGELOG
1 parent b1d75ad commit e44a316

4 files changed

Lines changed: 6 additions & 7 deletions

File tree

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
language: python
22
python:
3-
- "2.6"
43
- "2.7"
5-
- "3.2"
6-
- "3.3"
74
- "3.4"
85
- "3.5"
96
- "3.6"
7+
- "3.7"
108
install:
119
- "pip install flake8==3.3.0"
1210
script: python setup.py test

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Current Version
2-
-
2+
- Add official support for Python 3.7
3+
- Drop official support for Python 2.6, 3.2, 3.3
34

45
2.7.0 June 21, 2018
56
- Added optional `time_field` argument to `client.accounts.transactions`

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ touch <https://www.usebutton.com/contact>`__.
1212
Supported runtimes
1313
^^^^^^^^^^^^^^^^^^
1414

15-
- cPython ``2.6``, ``2.7``, ``3.2``, ``3.3``, ``3.4``, ``3.5``, ``3.6``
15+
- cPython ``2.7``, ``3.4``, ``3.5``, ``3.6``, ``3.7``
1616

1717
Dependencies
1818
^^^^^^^^^^^^
@@ -423,7 +423,7 @@ Contributing
423423
* Installing locally: ``python setup.py install``
424424
* Running tests: ``python setup.py test`` (you'll need to ``pip install flake8==3.3.0``)
425425
* Running lint directly: ``flake8 pybutton``
426-
* Running tests on all versions: ``tox`` (need to ``pip install tox`` and something like ``pyenv local 2.7.10 2.6.9 3.1.5 3.3.6 3.4.6 3.5.3 3.6.0`` if using ``pyenv``)
426+
* Running tests on all versions: ``tox`` (need to ``pip install tox`` and something like ``pyenv local 2.7.10 3.4.6 3.5.3 3.6.0`` if using ``pyenv``)
427427

428428
.. |Build Status| image:: https://travis-ci.org/button/button-client-python.svg?branch=master
429429
:target: https://travis-ci.org/button/button-client-python

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26, py27, py33, py34, py35, py36
2+
envlist = py27, py34, py35, py36, py37
33
skip_missing_interpreters = True
44

55
[testenv]

0 commit comments

Comments
 (0)