From 2e03da29849917b8bd536fb6029f97c8e94e1c79 Mon Sep 17 00:00:00 2001 From: Oliver Beckstein Date: Thu, 17 Nov 2022 09:49:25 -0700 Subject: [PATCH] test on Python 3.7 - 3.10 - fix #202 - add testing for Python 3.10 - dropped tests for Python 3.6 (should have been removed in 0.8.0) - update setup.py and CHANGES --- .github/workflows/ci.yaml | 10 +++++----- CHANGES | 11 +++++++++-- setup.py | 1 + 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7d79f931..e78f1999 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -31,20 +31,20 @@ jobs: # macos runners (latest GROMACS, oldest and latest Python) os: [ubuntu-latest] - python-version: ["3.9"] + python-version: ["3.10"] gromacs-version: ["4.6.5", "2018.6", "2020.6", "2021.1"] include: - - os: ubuntu-latest - python-version: "3.6" - gromacs-version: "2021.1" - os: ubuntu-latest python-version: "3.7" gromacs-version: "2021.1" - os: ubuntu-latest python-version: "3.8" gromacs-version: "2021.1" - - os: macos-latest + - os: ubuntu-latest python-version: "3.9" + gromacs-version: "2021.1" + - os: macos-latest + python-version: "3.10" gromacs-version: "2021.1" env: diff --git a/CHANGES b/CHANGES index 4be47269..16e9555a 100644 --- a/CHANGES +++ b/CHANGES @@ -2,11 +2,18 @@ CHANGES for MDPOW ================= -Add summary of changes for each release. Use ISO dates. Reference +Add summary of changes for each release. Use ISO 8061 dates. Reference GitHub issues numbers and PR numbers. + + 2022-??-?? 0.8.1 -cadeduckworth +cadeduckworth, orbeckst + +Changes + +* added support for Python 3.10 +* dropped testing on Python 3.6 Fixes diff --git a/setup.py b/setup.py index a5d88214..9ade6c7d 100644 --- a/setup.py +++ b/setup.py @@ -29,6 +29,7 @@ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Topic :: Scientific/Engineering :: Chemistry", "Topic :: Scientific/Engineering :: Physics", ],