Skip to content

Commit 201070f

Browse files
committed
IDEV-1994: Remove support from Python versions 3.8 and below.
1 parent ab07d9e commit 201070f

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-20.04
88
strategy:
99
matrix:
10-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
10+
python-version: ["3.9", "3.10", "3.11"]
1111

1212
steps:
1313
- uses: actions/checkout@v2

pyproject.toml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "domaintools_api"
77
dependencies = ["httpx", "rich", "typer"]
8-
requires-python = ">= 3.6"
8+
requires-python = ">= 3.9"
99
authors = [{ name = "DomainTools", email = "[email protected]" }]
1010
description = "DomainTools Official Python API"
1111
readme = "README.md"
@@ -18,11 +18,6 @@ classifiers = [
1818
"Environment :: Console",
1919
"License :: OSI Approved :: MIT License",
2020
"Programming Language :: Python",
21-
"Programming Language :: Python :: 3",
22-
"Programming Language :: Python :: 3 :: Only",
23-
"Programming Language :: Python :: 3.6",
24-
"Programming Language :: Python :: 3.7",
25-
"Programming Language :: Python :: 3.8",
2621
"Programming Language :: Python :: 3.9",
2722
"Programming Language :: Python :: 3.10",
2823
"Topic :: Software Development :: Libraries",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=py36, py37, py38, py39, py310
2+
envlist=py39, py310, py311
33
skip_missing_interpreters=true
44

55
[testenv]

0 commit comments

Comments
 (0)