Skip to content

Commit 756a254

Browse files
committed
chore: bump minimum support to Python 3.6
1 parent e25ef39 commit 756a254

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ If applicable, add screenshots to help explain your problem.
2121

2222
**Must gather (please complete the following information):**
2323
- SDK Version [e.g. 1.2.1]
24-
- Python Version [e.g. 3.5]
24+
- Python Version [e.g. 3.6]
2525
- Name of service that you're trying to use (if applicable)
2626
- Name of operation that you're trying to invoke (if applicable)
2727

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,27 +36,26 @@ script:
3636
- pytest test
3737
- ./test-integration.sh
3838

39-
# To enable semantic-release, uncomment these sections.
4039
# before_deploy:
4140
# - pip install bump2version
4241
# - nvm install 12
4342
# - npm install @semantic-release/changelog
4443
# - npm install @semantic-release/exec
4544
# - npm install @semantic-release/git
4645
# - npm install @semantic-release/github
47-
#
46+
4847
# deploy:
4948
# - provider: script
5049
# script: npx semantic-release
5150
# skip_cleanup: true
5251
# on:
53-
# python: '3.5'
52+
# python: '3.6'
5453
# branch: master
5554
# - provider: pypi
5655
# user: __token__
5756
# password: $PYPI_TOKEN
5857
# repository: https://upload.pypi.org/legacy
5958
# skip_cleanup: true
6059
# on:
61-
# python: '3.5'
60+
# python: '3.6'
6261
# tags: true

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ def finalize_options(self):
7878
classifiers=[
7979
'Programming Language :: Python',
8080
'Programming Language :: Python :: 3',
81-
'Programming Language :: Python :: 3.5',
8281
'Programming Language :: Python :: 3.6',
8382
'Programming Language :: Python :: 3.7',
8483
'Programming Language :: Python :: 3.8',

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[tox]
2-
envlist = py35-lint, py35, py36, py37, py38
2+
envlist = py37-lint, py36, py37, py38, py39
33

4-
[testenv:py35-lint]
5-
basepython = python3.5
4+
[testenv:py37-lint]
5+
basepython = python3.7
66
deps = pylint
77
commands = pylint --rcfile=.pylintrc ibm_code_engine_sdk test
88

0 commit comments

Comments
 (0)