Skip to content

Commit

Permalink
maint: bump earliest supported Python to 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
oesteban committed Mar 12, 2023
1 parent 9055314 commit 63433c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10"]
python-version: [3.8, 3.9, "3.10"]
install: [repo]
include:
- python-version: "3.10"
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10"]
python-version: [3.8, 3.9, "3.10"]
install: [repo]
pip-flags: ['--pre']

Expand Down Expand Up @@ -253,9 +253,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8
- run: pip install flake8
- run: flake8 niworkflows/
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ classifiers =
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Image Recognition
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand All @@ -24,7 +23,7 @@ project_urls =
url = https://www.nipreps.org

[options]
python_requires = >= 3.7
python_requires = >= 3.8
install_requires =
attrs
jinja2
Expand Down

0 comments on commit 63433c9

Please sign in to comment.