Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Made python 3 support official #1524

Merged
merged 2 commits into from
Jul 19, 2017
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
14 changes: 10 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:
- COVERALLS=false
- NOSE_FLAGS="--processes=2 --process-timeout=400 --no-open-files --with-timer --timer-top-n 50"
- NOSE_TEST_LIST=""
- PYTEST_FLAGS="--disable-pytest-warnings --numprocesses 2 --durations=50"
- PYTEST_FLAGS="--disable-pytest-warnings --durations=50"
- PYTEST_LIST="testsuite/MDAnalysisTests/lib testsuite/MDAnalysisTests/formats testsuite/MDAnalysisTests/coordinates testsuite/MDAnalysisTests/utils testsuite/MDAnalysisTests/topology testsuite/MDAnalysisTests/auxiliary testsuite/MDAnalysisTests/core testsuite/MDAnalysisTests/analysis"
- NOSE_COVERAGE_FILE="nose_coverage"
- PYTEST_COVERAGE_FILE="pytest_coverage"
Expand Down Expand Up @@ -89,15 +89,21 @@ matrix:
EVENT_TYPE='cron'

- os: linux
env: NAME='full-py3.6'
PYTHON_VERSION=3.6
env: NAME='full-py3.4'
PYTHON_VERSION=3.4
CONDA_DEPENDENCIES=${CONDA_ALL_DEPENDENCIES}
allow_failures:

- os: linux
env: NAME='full-py3.5'
PYTHON_VERSION=3.5
CONDA_DEPENDENCIES=${CONDA_ALL_DEPENDENCIES}

- os: linux
env: NAME='full-py3.6'
PYTHON_VERSION=3.6
CONDA_DEPENDENCIES=${CONDA_ALL_DEPENDENCIES}


install:
- git clone git://github.com/astropy/ci-helpers.git
- source ci-helpers/travis/setup_conda.sh
Expand Down
1 change: 1 addition & 0 deletions package/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ mm/dd/17 richardjgowers, rathann, orbeckst, tylerjereddy, mtiberti, kain88-de,
* 0.17.0

Enhancements
* Python versions 3.4 and upwards are now supported (Issue #260)
* add low level lib.formats.libdcd module for reading/writing DCD (PR #1372)
* replace old DCD reader with a Python 3 ready DCD reader (Issue #659)

Expand Down