From 305d09b823b2763bcd7d113df56a45cb263d4a53 Mon Sep 17 00:00:00 2001 From: Henri Pesonen Date: Mon, 12 Oct 2020 13:45:10 +0200 Subject: [PATCH] Update docs (#338) * Initial commit * Change python 3.5 references to 3.6 --- CHANGELOG.rst | 1 + CONTRIBUTING.rst | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cdac58fe..22dbbacc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,7 @@ Changelog ========= +- Update info to reflect setting python 3.6 as the default version - Update documentation to setting python 3.6 as default - Add dask support to elfi client options - Add python 3.7 to travis tests and remove python 3.5 due to clash with dask diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index faa969c2..61735334 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -75,7 +75,7 @@ Ready to contribute? Here's how to set up `ELFI` for local development. $ python -V 4. Install your local copy and the development requirements into a conda - environment. You may need to replace "3.5" in the first line with the python + environment. You may need to replace "3.6" in the first line with the python version printed in the previous step:: $ conda create -n elfi python=3.6 numpy @@ -127,7 +127,7 @@ Before you submit a pull request, check that it meets these guidelines: 2. If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst. -3. The pull request should work for Python 3.5 and later. Check +3. The pull request should work for Python 3.6 and later. Check https://travis-ci.org/elfi-dev/elfi/pull_requests and make sure that the tests pass for all supported Python versions. diff --git a/setup.py b/setup.py index 5c983047..22825b64 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ long_description=(open('docs/description.rst').read()), license='BSD', classifiers=[ - 'Programming Language :: Python :: 3.5', 'Topic :: Scientific/Engineering', + 'Programming Language :: Python :: 3.6', 'Topic :: Scientific/Engineering', 'Topic :: Scientific/Engineering :: Artificial Intelligence', 'Topic :: Scientific/Engineering :: Bio-Informatics', 'Topic :: Scientific/Engineering :: Mathematics', 'Operating System :: OS Independent',