Skip to content
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
12 changes: 9 additions & 3 deletions .github/workflows/gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,23 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, ]
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8, 3.9]
run_type: [FULL, ]
install_hole: [true, ]
codecov: [true, ]
include:
- name: macOS
- name: macOS_py39
os: macOS-latest
python-version: 3.7
python-version: 3.9
run_type: FULL
install_hole: true
codecov: true
- name: macOS_py36_min
os: macOS-latest
python-version: 3.6
run_type: MIN
install_hole: false
codecov: false
- name: minimal-ubuntu
os: ubuntu-latest
python-version: 3.6
Expand Down
1 change: 1 addition & 0 deletions package/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ Fixes
* Fix syntax warning over comparison of literals using is (Issue #3066)

Enhancements
* Adds python 3.9 support (Issue #2974, PR #3027, #3245)
* Added an MDAnalysis shields.io badge to the README (Issue #3227, PR #3229)
* Added sort method to the atomgroup (Issue #2976, PR #3188)
* ITPParser now reads [ atomtypes ] sections in ITP files, used for charges
Expand Down
1 change: 1 addition & 0 deletions package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -577,6 +577,7 @@ def long_description(readme):
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: C',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
Expand Down
1 change: 1 addition & 0 deletions testsuite/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ def run(self):
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: C',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
Expand Down