Skip to content

Commit e93768d

Browse files
committed
chore: stop python 3.7 support
1 parent cf23d38 commit e93768d

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
16+
python: ["3.8", "3.9", "3.10", "3.11"]
1717

1818
steps:
1919
- uses: actions/checkout@v2

CHANGES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ Added
88

99
- Implement `init_tree` method :pr:`8`
1010

11+
Removed
12+
*******
13+
14+
- Stop supporting python 3.7
15+
1116
[0.1.3] - 2023-03-12
1217
====================
1318

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ license = "MIT"
1111
keywords = ["ldap", "slapd"]
1212
classifiers = [
1313
"Intended Audience :: Developers",
14-
"Programming Language :: Python :: 3.7",
1514
"Programming Language :: Python :: 3.8",
1615
"Programming Language :: Python :: 3.9",
1716
"Programming Language :: Python :: 3.10",
@@ -30,7 +29,7 @@ repository = "https://gitlab.com/python-ldap/python-slapd"
3029
readme = "README.md"
3130

3231
[tool.poetry.dependencies]
33-
python = ">=3.7, <4"
32+
python = "^3.8"
3433

3534
[tool.poetry.group.dev.dependencies]
3635
coverage = "*"
@@ -67,7 +66,7 @@ doctest_optionflags= "ALLOW_UNICODE IGNORE_EXCEPTION_DETAIL ELLIPSIS"
6766
legacy_tox_ini = """
6867
[tox]
6968
isolated_build = true
70-
envlist = doc,py37,py38,py39,py310,py311,coverage
69+
envlist = doc,py38,py39,py310,py311,coverage
7170
skipsdist=true
7271
7372
[testenv]

0 commit comments

Comments
 (0)