Skip to content
This repository was archived by the owner on Jan 10, 2023. It is now read-only.

Commit 46e50f9

Browse files
authoredApr 29, 2022
Drop support for py36 and py37 (#47)
1 parent de21398 commit 46e50f9

File tree

5 files changed

+12
-44
lines changed

5 files changed

+12
-44
lines changed
 

‎.github/workflows/tox.yml

+4-8
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,15 @@ jobs:
2222
include:
2323
- tox_env: lint
2424
# - tox_env: docs
25-
- tox_env: py36
26-
PREFIX: PYTEST_REQPASS=2
27-
- tox_env: py37
28-
PREFIX: PYTEST_REQPASS=2
25+
- tox_env: packaging
2926
- tox_env: py38
3027
PREFIX: PYTEST_REQPASS=2
31-
- tox_env: py38-devel
32-
PREFIX: PYTEST_REQPASS=2
3328
- tox_env: py39
3429
PREFIX: PYTEST_REQPASS=2
35-
- tox_env: py39-devel
30+
- tox_env: py310
31+
PREFIX: PYTEST_REQPASS=2
32+
- tox_env: py310-devel
3633
PREFIX: PYTEST_REQPASS=2
37-
- tox_env: packaging
3834

3935
steps:
4036
- uses: actions/checkout@v1

‎mypy.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[mypy]
2-
python_version = 3.6
2+
python_version = 3.8
33
color_output = True
44
error_summary = True
55
disallow_untyped_calls = True

‎setup.cfg

+3-4
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,9 @@ classifiers =
2626
Natural Language :: English
2727
Operating System :: OS Independent
2828
Programming Language :: Python :: 3
29-
Programming Language :: Python :: 3.6
30-
Programming Language :: Python :: 3.7
3129
Programming Language :: Python :: 3.8
3230
Programming Language :: Python :: 3.9
31+
Programming Language :: Python :: 3.10
3332

3433
Topic :: System :: Systems Administration
3534
Topic :: Utilities
@@ -46,7 +45,7 @@ keywords =
4645

4746
[options]
4847
use_scm_version = True
49-
python_requires = >=3.6
48+
python_requires = >=3.8
5049
package_dir =
5150
= src
5251
packages = find:
@@ -55,7 +54,7 @@ zip_safe = False
5554

5655
# These are required in actual runtime:
5756
install_requires =
58-
molecule >= 3.2.0
57+
molecule >= 3.5.0
5958
pyyaml >= 5.1
6059
# Backends added here because most users will get confused if by default
6160
# this module would not work, unless you mention at least one extra.

‎tox.ini

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ minversion = 3.20.1
44
envlist =
55
lint
66
packaging
7-
py{36,37,38,39}
8-
py{38,39}-{devel}
7+
py
8+
py-{devel}
99

1010
skipsdist = True
1111
isolated_build = True
@@ -24,9 +24,9 @@ deps =
2424
# do not make ansible a runtime dependency, keep it specific to tox
2525
ansible-core >= 2.11
2626
ansible-lint
27-
molecule[test] >= 3.2.3
2827
# https://github.com/ansible-community/molecule-containers/pull/32
2928
filelock
29+
!devel: molecule[test] >= 3.6.0
3030
devel: git+https://github.com/ansible-community/molecule#egg=molecule[test]
3131
devel: git+https://github.com/ansible-community/molecule-docker#egg=molecule-docker
3232
devel: git+https://github.com/ansible-community/molecule-podman#egg=molecule-podman
@@ -46,6 +46,7 @@ setenv =
4646
ANSIBLE_VERBOSITY={env:ANSIBLE_VERBOSITY:0}
4747
PIP_DISABLE_PIP_VERSION_CHECK=1
4848
PY_COLORS={env:PY_COLORS:1}
49+
PRE_COMMIT_COLOR=always
4950
# pip: Avoid 2020-01-01 warnings: https://github.com/pypa/pip/issues/6207
5051
PYTHONWARNINGS=ignore:DEPRECATION::pip._internal.cli.base_command
5152
PYTHONDONTWRITEBYTECODE=1

‎zuul.d/layout.yaml

-28
This file was deleted.

0 commit comments

Comments
 (0)
This repository has been archived.