-
Notifications
You must be signed in to change notification settings - Fork 664
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2095 from MDAnalysis/release-0.19.0
Release 0.19.0
- Loading branch information
Showing
247 changed files
with
112,684 additions
and
10,474 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# config based on examples from SciPy & NumPy repositories, which | ||
# themselves credit an original example by Olivier Grisel at | ||
# https://github.com/ogrisel/python-appveyor-demo/blob/master/appveyor.yml | ||
clone_depth: 50 | ||
max_jobs: 100 | ||
|
||
cache: | ||
- '%LOCALAPPDATA%\pip\Cache' | ||
|
||
image: | ||
- Visual Studio 2015 | ||
|
||
environment: | ||
global: | ||
CONDA_CHANNELS: conda-forge | ||
CONDA_DEPENDENCIES: pip setuptools wheel cython mock six biopython networkx joblib matplotlib scipy vs2015_runtime pytest mmtf-python GridDataFormats hypothesis pytest-cov codecov | ||
PIP_DEPENDENCIES: gsd==1.5.2 duecredit | ||
DEBUG: "False" | ||
MINGW_64: C:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64\bin | ||
OPENBLAS_64: https://3f23b170c54c2533c070-1c8a9b3114517dc5fe17b7c3f8c63a43.ssl.cf2.rackcdn.com/openblas-5f998ef_gcc7_1_0_win64.zip | ||
APPVEYOR_SAVE_CACHE_ON_ERROR: true | ||
APPVEYOR_SKIP_FINALIZE_ON_EXIT: true | ||
TEST_TIMEOUT: 1000 | ||
PYTHON: "C:\\conda" | ||
MINICONDA_VERSION: "latest" | ||
|
||
matrix: | ||
- PYTHON_VERSION: 3.6 | ||
PYTHON_ARCH: 64 | ||
MSVC_VERSION: "Visual Studio 10 Win64" | ||
|
||
init: | ||
- ps: Write-Host ${env:PYTHON} ${env:PYTHON_VERSION} ${env:PYTHON_ARCH} | ||
- ps: Write-Host ${env:APPVEYOR_SCHEDULED_BUILD} | ||
# cancel build if newer one is submitted; complicated | ||
# details for getting this to work are credited to JuliaLang | ||
# developers | ||
- ps: if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod ` | ||
https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | ` | ||
Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { ` | ||
raise "There are newer queued builds for this pull request, skipping build." | ||
} | ||
|
||
install: | ||
# set up a conda env | ||
- ps: git clone -q --depth 1 git://github.com/astropy/ci-helpers.git | ||
- ps: ci-helpers/appveyor/install-miniconda.ps1 | ||
- ps: $env:PATH = "${env:PYTHON};${env:PYTHON}\Scripts;" + $env:PATH | ||
# deal with missing stdint.h as previously described | ||
# see https://github.com/swistakm/pyimgui/blob/master/.appveyor.yml | ||
- ps: cp "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\stdint.h" "C:\Users\appveyor\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\include\stdint.h" | ||
- ps: activate test | ||
|
||
build_script: | ||
- cmd: cd package | ||
- cmd: C:\conda\envs\test\python.exe setup.py develop --no-deps --user 3>&1 | ||
|
||
test_script: | ||
- cmd: cd ..\testsuite | ||
- cmd: C:\conda\envs\test\python.exe setup.py develop --no-deps --user 3>&1 | ||
- cmd: cd MDAnalysisTests | ||
- cmd: C:\conda\envs\test\Scripts\pytest.exe --cov=MDAnalysis --disable-pytest-warnings 3>&1 | ||
- cmd: codecov | ||
|
||
after_build: | ||
# cache cleanup | ||
- C:\cygwin\bin\find "%LOCALAPPDATA%\pip" -type f -mtime +360 -delete | ||
- C:\cygwin\bin\find "%LOCALAPPDATA%\pip" -type f -size +10M -delete | ||
- C:\cygwin\bin\find "%LOCALAPPDATA%\pip" -empty -delete | ||
# Show size of cache | ||
- C:\cygwin\bin\du -hs "%LOCALAPPDATA%\pip\Cache" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
service_name: travis-pro | ||
repo_token: wTp3SXSqCNiZPb5xMojbKrADQXVgbrQFT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
|
||
--- | ||
|
||
**Expected behavior** | ||
|
||
A clear and concise description of what you want to do and what you think should happen. (Code to reproduce the behavior can be added below). | ||
|
||
|
||
**Actual behavior** | ||
|
||
What happened instead. Add as much detail as you can. Include (copy and paste) stack traces and any output. | ||
|
||
|
||
**Code to reproduce the behavior** | ||
|
||
Show us how to reproduce the failiure. If you can, use trajectory files from the test data. | ||
|
||
``` python | ||
import MDAnalysis as mda | ||
from MDAnalysis.tests.datafiles import PSF, DCD, GRO, PDB, TPR, XTC, TRR, PRMncdf, NCDF | ||
|
||
u = mda.Universe(PSF, DCD) | ||
|
||
.... | ||
|
||
``` | ||
|
||
**Currently version of MDAnalysis** | ||
|
||
- Which version are you using? (run `python -c "import MDAnalysis as mda; print(mda.__version__)"`) | ||
- Which version of Python (`python -V`)? | ||
- Which operating system? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
name: Questions | ||
about: If you want to ask a question please use the mailing list! | ||
|
||
--- | ||
|
||
If you have a **QUESTION** such as | ||
|
||
- how to use MDAnalysis in general | ||
- how to accomplish something specific, | ||
- what output means | ||
- ... or similar questions related to USING MDAnalysis | ||
|
||
then please *ask this question on the user mailing list* | ||
|
||
https://groups.google.com/forum/#!forum/mdnalysis-discussion | ||
|
||
The issue tracker is meant for DEFECTS ("BUGS"), new FEATURES, and decisions on the API. In order to keep the volume of work on the issue tracker manageable for our volunteer developers, we will IMMEDIATELY CLOSE ISSUES THAT ARE BETTER ANSWERED ON THE USER MAILINGLIST. | ||
|
||
We really appreciate you as a user getting in touch with us --- no matter what you want to discuss. But we need your help keeping the amount of work manageable so please use the mailing list for questions and the issue tracker for code-related issues. | ||
|
||
Thank you! | ||
|
||
The MDAnalysis Development Team |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.