Skip to content

Commit 657d2b6

Browse files
authored
Merge pull request #61 from MDAnalysis/update-things
Try to modernise package a bit
2 parents 98c6b34 + eb47d43 commit 657d2b6

12 files changed

Lines changed: 1074 additions & 482 deletions

File tree

.github/workflows/gh-ci.yml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,22 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
os: [ubuntu-latest]
27-
python-version: [2.7, 3.6, 3.7, 3.8, 3.9]
27+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2828
include:
2929
- os: macOS-latest
30-
python-version: 2.7
30+
python-version: "3.9"
3131
- os: macOS-latest
32-
python-version: 3.9
32+
python-version: "3.12"
3333
- os: windows-latest
34-
python-version: 2.7
34+
python-version: "3.9"
3535
- os: windows-latest
36-
python-version: 3.9
36+
python-version: "3.12"
3737

3838
steps:
39-
- uses: actions/checkout@v2
39+
- uses: actions/checkout@v4
4040

4141
- name: Setup python
42-
uses: actions/setup-python@v2
42+
uses: actions/setup-python@v4
4343
with:
4444
python-version: ${{ matrix.python-version }}
4545

@@ -55,10 +55,6 @@ jobs:
5555
run: |
5656
python -m pip install six setuptools tqdm
5757
58-
- name: Install compatibility dependencies for Python 2.7 only
59-
if: startsWith(matrix.python-version, '2.7')
60-
run: python -m pip install pathlib2
61-
6258
- name: Install package
6359
run: |
6460
python -m pip install -e .

AUTHORS

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,7 @@ Chronological list of authors
1818
2020
1919

2020
- Lily Wang (@lilyminium)
21-
21+
22+
2023
23+
24+
- Irfan Alibay (@IAlibay)

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.9.0] - ????-??-??
8+
9+
### Changes
10+
- Update package to only support NEP29 range (Python 3.9 - 3.12 as of writing)
11+
712
## [0.8.1] - 2021-10-04
813

914
### Added

MDAnalysisData/__init__.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,12 @@
33
# Modelled after sklearn.datasets
44
# https://github.com/scikit-learn/scikit-learn/tree/0.20.X/sklearn/datasets
55

6-
from __future__ import absolute_import
7-
86
__all__ = ['datasets']
97

108
from . import datasets
119

12-
from ._version import get_versions
13-
__version__ = get_versions()['version']
14-
del get_versions
10+
from . import _version
11+
__version__ = _version.get_versions()['version']
1512

1613
try:
1714
from .authors import __authors__

0 commit comments

Comments
 (0)