Skip to content

Commit a4c0356

Browse files
committed
Dropping Python 3.8 support
1 parent 1ed124a commit a4c0356

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ workflows:
1212
matrix:
1313
parameters:
1414
# TODO: Revisit why pyenv doesn't recognize 3.12
15-
python_version: ["3.8", "3.9", "3.10", "3.11"] # "3.12"
15+
python_version: ["3.9", "3.10", "3.11"] # "3.12"
1616
arangodb_config: ["single", "cluster"]
1717
arangodb_license: ["community", "enterprise"]
1818
arangodb_version: ["3.11", "latest"]

README.md

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

2424
- ArangoDB version 3.11+
25-
- Python version 3.8+
25+
- Python version 3.9+
2626

2727
## Installation
2828

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,14 @@ keywords = ["arangodb", "python", "driver"]
1818
readme = "README.md"
1919
dynamic = ["version"]
2020
license = { file = "LICENSE" }
21-
requires-python = ">=3.8"
21+
requires-python = ">=3.9"
2222

2323
classifiers = [
2424
"Intended Audience :: Developers",
2525
"License :: OSI Approved :: MIT License",
2626
"Natural Language :: English",
2727
"Operating System :: OS Independent",
2828
"Programming Language :: Python :: 3",
29-
"Programming Language :: Python :: 3.8",
3029
"Programming Language :: Python :: 3.9",
3130
"Programming Language :: Python :: 3.10",
3231
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)