Skip to content

Commit 795f5fe

Browse files
feat(release): Update SDK to use API version 2022-02-08 (#33)
* feat(release): Update SDK to use API version 2022-02-08 * py36 removed, py39 added and pytest upgraded * updated py version to 3.7 for semantic release * fix(setup): Update setup.py Co-authored-by: astha.jain <[email protected]>
1 parent 612cdb3 commit 795f5fe

File tree

8 files changed

+56370
-43854
lines changed

8 files changed

+56370
-43854
lines changed

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@ notifications:
99

1010
matrix:
1111
include:
12-
- python: 3.6
1312
- python: 3.7
1413
- python: 3.8
15-
# - python: 3.9
14+
- python: 3.9
1615

1716
before_install:
1817
- npm install npm@latest -g
@@ -38,7 +37,7 @@ deploy:
3837
script: npx semantic-release
3938
skip_cleanup: true
4039
on:
41-
python: '3.6'
40+
python: '3.7'
4241
branch: master
4342

4443
- provider: pypi
@@ -47,5 +46,5 @@ deploy:
4746
repository: https://upload.pypi.org/legacy
4847
skip_cleanup: true
4948
on:
50-
python: '3.6'
49+
python: '3.7'
5150
tags: true

ibm_vpc/vpc_v1.py

Lines changed: 33065 additions & 23824 deletions
Large diffs are not rendered by default.

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# test dependencies
22
coverage>=4.5.4
33
pylint>=2.6.0,<3.0.0
4-
pytest>=6.2.1,<7.0.0
4+
pytest>=6.2.1,<=7.0.0
55
pytest-cov>=2.2.1,<3.0.0
66
pytest-rerunfailures>=3.1
77
responses>=0.12.1,<1.0.0

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
python_dateutil>=2.5.3,<3.0.0
2-
ibm_cloud_sdk_core>=3.13.2
2+
ibm_cloud_sdk_core>=3.14.0

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.6',
8281
'Programming Language :: Python :: 3.7',
8382
'Programming Language :: Python :: 3.8',
8483
'Programming Language :: Python :: 3.9',

test/integration/test_gen2.py

Lines changed: 859 additions & 83 deletions
Large diffs are not rendered by default.

test/unit/test_vpc_v1.py

Lines changed: 22440 additions & 19939 deletions
Large diffs are not rendered by default.

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37-lint, py36, py37, py38, py39
2+
envlist = py37-lint, py37, py38, py39
33

44
[testenv:py37-lint]
55
basepython = python3.7

0 commit comments

Comments
 (0)