Skip to content

Commit

Permalink
Merge pull request #722 from yarikoptic/enh-3.12
Browse files Browse the repository at this point in the history
Drop Python 3.7 support
  • Loading branch information
yarikoptic authored Dec 8, 2023
2 parents e259f35 + 2e761a5 commit 7db9f6c
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.7'
python-version: '3.8'

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
if: steps.auto-version.outputs.version != ''
uses: actions/setup-python@v4
with:
python-version: '^3.7'
python-version: '^3.8'

- name: Install Python dependencies
if: steps.auto-version.outputs.version != ''
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.7'
python-version: '3.8'

- name: Install dependencies
run: |
Expand Down
3 changes: 1 addition & 2 deletions heudiconv/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"Environment :: Console",
"Intended Audience :: Science/Research",
"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 @@ -20,7 +19,7 @@
"Typing :: Typed",
]

PYTHON_REQUIRES = ">=3.7"
PYTHON_REQUIRES = ">=3.8"

REQUIRES = [
# not usable in some use cases since might be just a downloader, not binary
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build-system]
requires = [
"setuptools >= 46.4.0",
"versioningit ~= 1.0",
"versioningit ~= 2.3",
"wheel ~= 0.32"
]
build-backend = "setuptools.build_meta"
Expand Down

0 comments on commit 7db9f6c

Please sign in to comment.