8000 Update cPython official cPython support by griffinmyers · Pull Request #36 · button/button-client-python · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
install:
- "pip install flake8==3.3.0"
script: python setup.py test
3 changes: 2 additions & 1 deletion CHANGELOG.md
8000
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Current Version
-
- Add official support for Python 3.7
- Drop official support for Python 2.6, 3.2, 3.3

2.7.0 June 21, 2018
- Added optional `time_field` argument to `client.accounts.transactions`
Expand Down
4 changes: 2 additions & 2 deletions README.rst
C221
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ touch <https://www.usebutton.com/contact>`__.
Supported runtimes
^^^^^^^^^^^^^^^^^^

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

Dependencies
^^^^^^^^^^^^
Expand Down Expand Up @@ -423,7 +423,7 @@ Contributing
* Installing locally: ``python setup.py install``
* Running tests: ``python setup.py test`` (you'll need to ``pip install flake8==3.3.0``)
* Running lint directly: ``flake8 pybutton``
* 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``)
* 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``)

.. |Build Status| image:: https://travis-ci.org/button/button-client-python.svg?branch=master
:target: https://travis-ci.org/button/button-client-python
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26, py27, py33, py34, py35, py36
envlist = py27, py34, py35, py36, py37
skip_missing_interpreters = True

[testenv]
Expand Down
0