Skip to content

Commit 04724d1

Browse files
author
shlomihod
committed
bump to python 3.6+
1 parent 05c86c6 commit 04724d1

File tree

6 files changed

+11
-16
lines changed

6 files changed

+11
-16
lines changed

.scrutinizer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
build:
22
environment:
3-
python: 3.5.0
3+
python: 3.6
44
tests:
55
override:
66
- pylint-run --rcfile=.pylint.ini

.travis.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
1-
dist: xenial # required for Python >= 3.7
21
language: python
32
python:
4-
- "3.5"
5-
- "3.5-dev" # 3.5 development branch
63
- "3.6"
7-
- "3.6-dev" # 3.6 development branch
84
- "3.7"
9-
- "3.7-dev" # 3.7 development branch
10-
# - "3.8-dev" # 3.8 development branch
11-
# - "nightly" # nightly build
5+
- "3.7"
6+
- "3.8"
7+
- "3.8-dev" # 3.8 development branch
8+
- "nightly" # nightly build
129

1310
cache:
1411
pip: true
@@ -30,8 +27,7 @@ install:
3027
- make install
3128

3229
script:
33-
- make check
34-
- make test
30+
- make ci
3531

3632
after_success:
3733
- pip install coveralls scrutinizer-ocular

.verchew.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ version = GNU Make
66
[Python]
77

88
cli = python
9-
version = Python 3.5.
9+
version = Python 3.6.
1010

1111
[pipenv]
1212

1313
cli = pipenv
14-
versions = 10. | 11. | 2018.11 | 2018.10
14+
versions = 2019. | 2020.
1515

1616
[Graphviz]
1717

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ twine = ">= 1.11.0"
4949
jupyter = "*"
5050
notebook = ">=5.7.8"
5151
requests = ">=2.20.0"
52-
sniffer = "*"
52+
sniffer = "*"

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ or write us in `Gitter <https://gitter.im/ResponsiblyAI/responsibly>`_.
6363
Requirements
6464
------------
6565

66-
- Python 3.5+
66+
- Python 3.6+
6767

6868
Installation
6969
------------

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
PACKAGE_NAME = 'responsibly'
10-
MINIMUM_PYTHON_VERSION = '3.5'
10+
MINIMUM_PYTHON_VERSION = '3.6'
1111

1212

1313
def check_python_version():
@@ -69,7 +69,6 @@ def build_description():
6969
'Programming Language :: Python',
7070
'Programming Language :: Python :: 3',
7171
'Programming Language :: Python :: 3 :: Only',
72-
'Programming Language :: Python :: 3.5',
7372
'Programming Language :: Python :: 3.6',
7473
'Programming Language :: Python :: 3.7',
7574
],

0 commit comments

Comments
 (0)