Skip to content

Commit 2093a17

Browse files
committed
Drop support for Python 3.7
1 parent 4d72749 commit 2093a17

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11.1"]
20+
python-version: ["3.8", "3.9", "3.10", "3.11.1"]
2121

2222
steps:
2323
- name: Checkout repository

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ database natively supporting documents, graphs and search.
1515
## Requirements
1616

1717
- ArangoDB version 3.7+
18-
- Python version 3.7+
18+
- Python version 3.8+
1919

2020
## Installation
2121

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Requirements
1111
=============
1212

1313
- ArangoDB version 3.7+
14-
- Python version 3.7+
14+
- Python version 3.8+
1515

1616
Installation
1717
============

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,10 @@
1515
packages=find_packages(exclude=["tests"]),
1616
package_data={"arango": ["py.typed"]},
1717
include_package_data=True,
18-
python_requires=">=3.7",
18+
python_requires=">=3.8",
1919
license="MIT",
2020
install_requires=[
2121
"urllib3>=1.26.0",
22-
"dataclasses>=0.6; python_version < '3.7'",
23-
"importlib-metadata; python_version < '3.8'",
2422
"requests",
2523
"requests_toolbelt",
2624
"PyJWT",

0 commit comments

Comments
 (0)