Skip to content

Commit 31d2212

Browse files
committed
Formally support python 3.7
1 parent 17a1ad8 commit 31d2212

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

docs/installation.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Installing COT
77
System requirements
88
-------------------
99

10-
* COT requires either Python 2.7 or Python 3.3 or later.
10+
* COT requires either Python 2.7 or Python 3.4 or later.
1111
* COT is tested to work under Mac OS X and Ubuntu Linux and similar distros.
1212
* COT now has limited support for CentOS and related distros as well.
1313

@@ -146,7 +146,7 @@ of the COT installation process, or they can be installed as-needed by COT:
146146
file types.
147147

148148
COT can attempt to install these tools using the appropriate package manager
149-
for your platform (i.e., MacPorts_ for Mac OS X, and either ``apt-get`` or
149+
for your platform (i.e., MacPorts_ or Homebrew_ for Mac OS X, and either ``apt-get`` or
150150
``yum`` for Linux).
151151

152152
.. warning::
@@ -175,4 +175,5 @@ to install the helper in question.
175175
.. _fatdisk: http://github.com/goblinhack/fatdisk
176176
.. _ovftool: https://www.vmware.com/support/developer/ovf/
177177
.. _MacPorts: http://www.macports.org/
178+
.. _Homebrew: https://brew.sh/
178179
.. _argcomplete: https://argcomplete.readthedocs.io/en/latest/

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ def run(self):
216216
'Programming Language :: Python :: 3.4',
217217
'Programming Language :: Python :: 3.5',
218218
'Programming Language :: Python :: 3.6',
219+
'Programming Language :: Python :: 3.7',
219220
'Programming Language :: Python :: Implementation :: CPython',
220221
'Programming Language :: Python :: Implementation :: PyPy',
221222
],

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ max-complexity = 11
1313
minversion=2.3.1
1414
envlist =
1515
setup
16-
py{27,34,35,36,py,py3}
16+
py{27,34,35,36,37,py,py3}
1717
flake8
1818
pylint
1919
docs
@@ -28,6 +28,7 @@ envlist =
2828
# Note that "verboselogs" is not compatible with pylint 2.x yet:
2929
# https://github.com/xolox/python-verboselogs/issues/9
3030
3.6 = setup, py36, docs, stats
31+
3.7 = setup, py37, stats
3132
pypy = setup, pypy, stats
3233
pypy3 = setup, pypy3, stats
3334

0 commit comments

Comments
 (0)