Skip to content

Commit d0ddcd2

Browse files
committed
Drop Python 3.7, configure automatic package version
1 parent 0607925 commit d0ddcd2

File tree

5 files changed

+8
-11
lines changed

5 files changed

+8
-11
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
- macos-latest
2424
- windows-latest
2525
python-version:
26-
- '3.7'
2726
- '3.8'
2827
- '3.9'
2928
- '3.10'

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = ["setuptools>=64", "setuptools_scm>=8"]
44

55
[project]
66
name = "cli-test-helpers"
7-
version = "4.0.0"
7+
dynamic = ["version"]
88
description = "Useful helpers for writing tests for your Python CLI program."
99
readme = "README.rst"
1010
license = {file = "LICENSE"}
@@ -21,7 +21,6 @@ classifiers = [
2121
"Programming Language :: Python",
2222
"Programming Language :: Python :: 3",
2323
"Programming Language :: Python :: 3 :: Only",
24-
"Programming Language :: Python :: 3.7",
2524
"Programming Language :: Python :: 3.8",
2625
"Programming Language :: Python :: 3.9",
2726
"Programming Language :: Python :: 3.10",
@@ -39,7 +38,7 @@ keywords = [
3938
"testing",
4039
"helpers",
4140
]
42-
requires-python = ">=3.7"
41+
requires-python = ">=3.8"
4342

4443
[project.urls]
4544
homepage = "https://github.com/painless-software/python-cli-test-helpers"
@@ -63,6 +62,7 @@ extend-select = ["ALL"]
6362
extend-ignore = [
6463
"ANN",
6564
"D200",
65+
"D203",
6666
"D205",
6767
"D212",
6868
"Q000",

tests/test_commands.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
"""
2-
Tests for our cli test commands.
3-
"""
1+
"""Tests for our cli test commands."""
2+
43
from os import linesep
54

65
from cli_test_helpers import shell

tests/test_decorators.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
"""
2-
Tests for our tests helpers. 8-}.
3-
"""
1+
"""Tests for our tests helpers. 8-}."""
2+
43
import os
54
import sys
65

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
envlist =
55
lint
66
format
7-
py3{7,8,9,10,11,12}
7+
py3{8,9,10,11,12}
88
pypy3{8,9}
99
package
1010
docs

0 commit comments

Comments
 (0)