From d7b8f8b8928dbd8373da524161bc8e29634f94ac Mon Sep 17 00:00:00 2001 From: Ian Kenney Date: Thu, 4 May 2023 10:13:21 -0700 Subject: [PATCH] Increase minimum Python version to 3.9 * Bump Python version to 3.9+ * Bumping minor release --- .github/workflows/gh-ci.yaml | 2 +- meta.yaml | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gh-ci.yaml b/.github/workflows/gh-ci.yaml index 1b6e5c6..3a49213 100644 --- a/.github/workflows/gh-ci.yaml +++ b/.github/workflows/gh-ci.yaml @@ -43,7 +43,7 @@ jobs: matrix: # os: [macOS-latest, ubuntu-latest, windows-latest] os: [ubuntu-latest] - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.9", "3.10", "3.11"] mdanalysis-version: ["latest", "develop"] steps: diff --git a/meta.yaml b/meta.yaml index c74134d..645fe35 100644 --- a/meta.yaml +++ b/meta.yaml @@ -1,6 +1,6 @@ package: name: mdakithole2 - version: "0.1.0" + version: "0.2.0" source: path: . diff --git a/pyproject.toml b/pyproject.toml index 0f9daff..e3d6995 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ maintainers = [ {name = "Ian Kenney", email = "ikenney@asu.edu"}, ] readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.9" dependencies = [ "MDAnalysis>=2.0.0", ] diff --git a/setup.py b/setup.py index 223f2dc..4f7482c 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ # Customize MANIFEST.in if the general case does not suit your needs # Comment out this line to prevent the files from being packaged with your software include_package_data=True, - python_requires=">=3.8", # Python version restrictions + python_requires=">=3.9", # Python version restrictions # Allows `setup.py test` to work correctly with pytest setup_requires=[] + pytest_runner, # Required packages, pulls from pip if needed