Skip to content

Commit 193576b

Browse files
committed
remove python 3.7
1 parent 8a58bab commit 193576b

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
11+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1212

1313
steps:
1414
- uses: actions/checkout@v3

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,13 @@ authors = [
1212
description = "A Python library for the Semcache API"
1313
readme = "README.md"
1414
license = {text = "MIT"}
15-
requires-python = ">=3.7"
15+
requires-python = ">=3.8"
1616
classifiers = [
1717
"Development Status :: 3 - Alpha",
1818
"Intended Audience :: Developers",
1919
"License :: OSI Approved :: MIT License",
2020
"Operating System :: OS Independent",
2121
"Programming Language :: Python :: 3",
22-
"Programming Language :: Python :: 3.7",
2322
"Programming Language :: Python :: 3.8",
2423
"Programming Language :: Python :: 3.9",
2524
"Programming Language :: Python :: 3.10",
@@ -74,7 +73,7 @@ strict_equality = true
7473

7574
[tool.black]
7675
line-length = 88
77-
target-version = ['py37']
76+
target-version = ['py38']
7877
include = '\.pyi?$'
7978
extend-exclude = '''
8079
/(

0 commit comments

Comments
 (0)