Skip to content

Commit

Permalink
chg: dev: Updated Python 3 supported version to 3.5 to match to Ubunt…
Browse files Browse the repository at this point in the history
…u 16.04.
  • Loading branch information
carlos-jenkins committed Jul 11, 2017
1 parent 21abda0 commit 16d39da
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,5 +311,5 @@ def setup(app):

# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {
'python': ('https://docs.python.org/3.4', None)
'python': ('https://docs.python.org/3.5', None)
}
2 changes: 1 addition & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ Python API

.. currentmodule:: plantweb.render

There are 2 main functions, both Python 2.7 and 3.4 compatible:
There are 2 main functions, both Python 2.7 and 3.5 compatible:

#. :func:`render` allows to render content directly.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def find_requirements(filename):
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
# Sphinx autodoc cannot extract the documentation of zipped eggs with the
# ``.. autodata::`` directive, causing caos in autoapi.
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py34, coverage, doc
envlist = py27, py35, coverage, doc

[testenv]
passenv = http_proxy https_proxy
Expand All @@ -15,7 +15,7 @@ commands =
{envsitepackagesdir}/plantweb

[testenv:coverage]
basepython = python3.4
basepython = python3.5
commands =
py.test -vvv -s \
--junitxml=tests.xml \
Expand All @@ -28,7 +28,7 @@ commands =
{envsitepackagesdir}/plantweb

[testenv:doc]
basepython = python3.4
basepython = python3.5
deps =
-rrequirements.doc.txt
whitelist_externals =
Expand Down

0 comments on commit 16d39da

Please sign in to comment.