Skip to content

Commit ccc32ab

Browse files
authored
Merge pull request #542 from sanders41/py37
Drop Python 3.7 support
2 parents 3b05620 + ab072cf commit ccc32ab

File tree

3 files changed

+5
-74
lines changed

3 files changed

+5
-74
lines changed

.github/workflows/testing.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
strategy:
4646
fail-fast: false
4747
matrix:
48-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
48+
python-version: ["3.8", "3.9", "3.10", "3.11"]
4949
runs-on: ubuntu-latest
5050
steps:
5151
- uses: actions/checkout@v3

poetry.lock

Lines changed: 2 additions & 70 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ keywords = ["meilisearch", "async", "python"]
1212
classifiers=[
1313
"Development Status :: 5 - Production/Stable",
1414
"Intended Audience :: Developers",
15-
"Programming Language :: Python :: 3.7",
1615
"Programming Language :: Python :: 3.8",
1716
"Programming Language :: Python :: 3.9",
1817
"Programming Language :: Python :: 3.10",
@@ -24,7 +23,7 @@ classifiers=[
2423
include = ["meilisearch_python_async/py.typed"]
2524

2625
[tool.poetry.dependencies]
27-
python = "^3.7"
26+
python = "^3.8"
2827
httpx = ">=0.17"
2928
pydantic = ">=1.8"
3029
aiofiles = ">=0.7"
@@ -92,5 +91,5 @@ disallow_untyped_defs = false
9291
select=["E", "F", "UP", "I001", "T201", "T203"]
9392
ignore=["E501"]
9493
line-length = 100
95-
target-version = "py37"
94+
target-version = "py38"
9695
fix = true

0 commit comments

Comments
 (0)