Skip to content

Commit bf3098b

Browse files
committed
Require Python 3.6
Contributes to chaostoolkit/chaostoolkit#208 Signed-off-by: Sylvain Hellegouarch <sh@defuze.org>
1 parent 28f5a68 commit bf3098b

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-16.04
88
strategy:
99
matrix:
10-
python-version: [3.5, 3.6, 3.7, 3.8]
10+
python-version: [3.6, 3.7, 3.8]
1111
steps:
1212
- uses: actions/checkout@v2
1313
- name: Set up Python ${{ matrix.python-version }}
@@ -33,7 +33,7 @@ jobs:
3333
- name: Set up Python
3434
uses: actions/setup-python@v1
3535
with:
36-
python-version: '3.5'
36+
python-version: '3.6'
3737
- name: Install dependencies
3838
run: |
3939
python -m pip install --upgrade pip setuptools wheel

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Python
1818
uses: actions/setup-python@v1
1919
with:
20-
python-version: '3.5'
20+
python-version: '3.6'
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44

55
[Unreleased]: https://github.com/chaostoolkit/chaostoolkit-lib/compare/1.18.3...HEAD
66

7+
### Changed
8+
9+
- Library now requires Python 3.6 [#208][ctk208]
10+
11+
[ctk208]: https://github.com/chaostoolkit/chaostoolkit/issues/208
12+
713
## [1.18.3][] - 2021-02-16
814

915
[1.18.3]: https://github.com/chaostoolkit/chaostoolkit-lib/compare/1.18.2...1.18.3

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
requires = [
3-
"setuptools>=34.4",
3+
"setuptools>=51.0",
44
"wheel",
55
"setuptools_scm>=1.15",
66
"setuptools_scm_git_archive>=1.0",

setup.cfg

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ classifiers =
3030
Operating System :: OS Independent
3131
Programming Language :: Python
3232
Programming Language :: Python :: 3
33-
Programming Language :: Python :: 3.5
3433
Programming Language :: Python :: 3.6
3534
Programming Language :: Python :: 3.7
3635
Programming Language :: Python :: 3.8
@@ -39,7 +38,7 @@ classifiers =
3938

4039
[options]
4140
use_scm_version = True
42-
python_requires = >=3.5
41+
python_requires = >=3.6
4342
packages = find:
4443
include_package_data = True
4544
setup_requires =
@@ -49,15 +48,13 @@ setup_requires =
4948
install_requires =
5049
logzero~=1.5
5150
requests~=2.21
52-
pyyaml~=5.3; python_version < '3.6'
5351
pyyaml~=5.4; python_version >= '3.6'
5452
contextvars;python_version<"3.7"
5553
importlib-metadata~=1.2.0; python_version < '3.8'
5654
tests_require =
5755
requests-mock
5856
coverage
5957
pycodestyle
60-
pytest~=5.0; python_version < '3.6'
6158
pytest~=6.2; python_version >= '3.6'
6259
pytest-cov
6360
pytest-sugar

0 commit comments

Comments
 (0)