Skip to content

Commit e4ef054

Browse files
committed
Drop Python 3.5 + 3.6 from Tox and CI setup
1 parent cdf25c0 commit e4ef054

File tree

3 files changed

+2
-9
lines changed

3 files changed

+2
-9
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,10 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
platform:
22-
- ubuntu-20.04
22+
- ubuntu-latest
2323
- macos-latest
2424
- windows-latest
2525
python-version:
26-
- '3.5'
27-
- '3.6'
2826
- '3.7'
2927
- '3.8'
3028
- '3.9'

pyproject.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ classifiers = [
2020
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
2121
"Programming Language :: Python",
2222
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.5",
24-
"Programming Language :: Python :: 3.6",
2523
"Programming Language :: Python :: 3.7",
2624
"Programming Language :: Python :: 3.8",
2725
"Programming Language :: Python :: 3.9",
@@ -40,9 +38,6 @@ keywords = [
4038
"testing",
4139
"helpers",
4240
]
43-
dependencies = [
44-
"mock<4; python_version<'3'",
45-
]
4641

4742
[project.urls]
4843
homepage = "https://github.com/painless-software/python-cli-test-helpers"

tox.ini

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

0 commit comments

Comments
 (0)