Skip to content

Commit

Permalink
Revert "Add back 3.9 support" (#105)
Browse files Browse the repository at this point in the history
* Revert "Add back 3.9 support (#89)"

This reverts commit 5f771ce.

* Remove/bumps ome other 3.9 stuff

* Norway problem
  • Loading branch information
mattwthompson authored Apr 8, 2024
1 parent f7fb441 commit 28387c1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 12 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/examples-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,11 @@ jobs:
fail-fast: false
matrix:
os: [macOS-latest, ubuntu-latest]
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11"]
pydantic-version: ["2"]
include-rdkit: [true]
include-openeye: [false]
include-dgl: [true]
exclude:
# broken OpenMM build for Mac on 3.10
- os: "macOS-latest"
python-version: "3.10"


steps:
Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,14 @@ jobs:
fail-fast: false
matrix:
os: [macOS-latest, ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]
pydantic-version: ["1", "2"]
include-rdkit: [false, true]
include-openeye: [false, true]
include-dgl: [false, true]
exclude:
- include-rdkit: false
include-openeye: false
# broken OpenMM build for Mac on 3.10
- os: "macOS-latest"
python-version: "3.10"
# Can't support 3.12 on Mac yet
- python-version: "3.12"
os: "macOS-latest"
Expand Down Expand Up @@ -121,7 +118,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.9
python-version: "3.10"

- name: Install Pylint
run: |
Expand All @@ -145,7 +142,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.9
python-version: "3.10"

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.9", # Python version restrictions
python_requires=">=3.10", # Python version restrictions
# Allows `setup.py test` to work correctly with pytest
setup_requires=[] + pytest_runner,
# Required packages, pulls from pip if needed
Expand Down

0 comments on commit 28387c1

Please sign in to comment.