Skip to content

Commit

Permalink
Merge pull request #117 from Hekstra-Lab/no_python3.7
Browse files Browse the repository at this point in the history
Remove support for Python 3.7
  • Loading branch information
JBGreisman authored Dec 9, 2021
2 parents f5883d6 + bcb0a5c commit 9bd81af
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.8, 3.9]

# Skip CI if 'skip ci' is contained in latest commit message
if: "!contains(github.event.head_commit.message, 'skip ci')"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
steps:

- uses: actions/checkout@v2
- name: Set up Python 3.7
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.9

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def getVersionNumber():
author_email="kmdalton@g.harvard.edu, greisman@g.harvard.edu",
url="https://hekstra-lab.github.io/reciprocalspaceship/",
project_urls=PROJECT_URLS,
python_requires=">3.6",
python_requires=">3.7",
install_requires=[
"gemmi>=0.4.2, <=0.5.0",
"pandas>=1.2.0, <=1.3.4",
Expand Down

0 comments on commit 9bd81af

Please sign in to comment.