File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2727
2828 - name : Run tests against MDAnalysis dev version
2929 run : tox -e tests-dev
30+
31+ tests-release :
32+ runs-on : ubuntu-latest
33+ strategy :
34+ matrix :
35+ python-version : ["3.11", "3.14"]
36+
37+ steps :
38+ - uses : actions/checkout@v6
39+ with :
40+ fetch-depth : 0
41+
42+ - name : Check out latest release tag
43+ run : git checkout $(git describe --tags --abbrev=0)
44+
45+ - name : Set up Python ${{ matrix.python-version }}
46+ uses : actions/setup-python@v6
47+ with :
48+ python-version : ${{ matrix.python-version }}
49+
50+ - name : Install released scatterkit and test dependencies
51+ run : |
52+ python -m pip install scatterkit
53+ python -m pip install -r tests/requirements.txt
54+ python -m pip list
55+
56+ - name : Run tests against released versions
57+ run : pytest
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ CHANGELOG file
99 - keep the format consistent (79 char width, Y/M/D date format) and do not
1010 use tabs but use spaces for formatting
1111
12- Unreleased
13- ----------
12+ v0.1.1 (2026/05/12)
13+ -------------------
1414Henrik Stooß
1515
1616- Removed versioneer and switched to setuptools_scm for version management (#16)
You can’t perform that action at this time.
0 commit comments