Skip to content

Commit 0f65db6

Browse files
authored
Drop Python 3.7 support (#160)
1 parent d1aa498 commit 0f65db6

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

.azure-pipelines/azure-pipelines.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ stages:
1515
pool:
1616
vmImage: ubuntu-20.04
1717
steps:
18-
# Use Python >=3.7 for syntax validation
18+
# Use Python >=3.8 for syntax validation
1919
- task: UsePythonVersion@0
2020
displayName: Set up python
2121
inputs:
22-
versionSpec: 3.7
22+
versionSpec: 3.8
2323

2424
# Run syntax validation on a shallow clone
2525
- bash: |
@@ -80,8 +80,6 @@ stages:
8080
vmImage: ubuntu-20.04
8181
strategy:
8282
matrix:
83-
python37:
84-
PYTHON_VERSION: 3.7
8583
python38:
8684
PYTHON_VERSION: 3.8
8785
python39:

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ classifiers =
1212
Intended Audience :: Developers
1313
License :: OSI Approved :: BSD License
1414
Programming Language :: Python :: 3
15-
Programming Language :: Python :: 3.7
1615
Programming Language :: Python :: 3.8
1716
Programming Language :: Python :: 3.9
1817
Programming Language :: Python :: 3.10
@@ -34,7 +33,7 @@ install_requires =
3433
packages = find:
3534
package_dir =
3635
=src
37-
python_requires = >=3.7
36+
python_requires = >=3.8
3837
zip_safe = False
3938
include_package_data = True
4039

0 commit comments

Comments
 (0)