From 5f771ce49935c1f5cb2798a21da37734c4d5099b Mon Sep 17 00:00:00 2001 From: Lily Wang <31115101+lilyminium@users.noreply.github.com> Date: Wed, 14 Feb 2024 17:12:09 +1100 Subject: [PATCH] Add back 3.9 support (#89) --- .github/workflows/gh-ci.yaml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gh-ci.yaml b/.github/workflows/gh-ci.yaml index 5a97b14..873fd2f 100644 --- a/.github/workflows/gh-ci.yaml +++ b/.github/workflows/gh-ci.yaml @@ -31,7 +31,7 @@ jobs: fail-fast: false matrix: os: [macOS-latest, ubuntu-latest] - python-version: ["3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] pydantic-version: ["1", "2"] include-rdkit: [true, false] include-openeye: [true, false] diff --git a/setup.py b/setup.py index 7aed8ac..76977e0 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,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.10", # 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