Skip to content

Commit

Permalink
Drop support for Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
hartwork committed Jun 26, 2023
1 parent 9461d9f commit 66b57a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Run the test suite
strategy:
matrix:
python-version: [3.7, 3.11] # no particular need for in-between versions
python-version: [3.8, 3.11] # no particular need for in-between versions
runs-on: [macos-11, ubuntu-22.04]
runs-on: ${{ matrix.runs-on }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repos:
rev: v3.7.0
hooks:
- id: pyupgrade
args: ['--py37-plus']
args: ['--py38-plus']

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def _read(filename):
author='Sebastian Pipping',
author_email='[email protected]',
url='https://github.com/hartwork/resolve-march-native',
python_requires='>=3.7',
python_requires='>=3.8',
packages=[
'resolve_march_native',
],
Expand All @@ -41,7 +41,6 @@ def _read(filename):
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand Down

0 comments on commit 66b57a9

Please sign in to comment.