Skip to content

fix: updating versions #106

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ notifications:

matrix:
include:
- python: 3.7
- python: 3.8
before_script:
- >-
[ -z "${TRAVIS_TAG}" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ]
Expand All @@ -18,11 +18,12 @@ matrix:
&& openssl aes-256-cbc -K $encrypted_27cb64608ff6_key -iv $encrypted_27cb64608ff6_iv -in dl.env.enc -out dl.env -d || true
&& openssl aes-256-cbc -K $encrypted_fc092b9428d6_key -iv $encrypted_fc092b9428d6_iv -in cis.env.enc -out cis.env -d || true
&& openssl aes-256-cbc -K $encrypted_89a9eb4f9417_key -iv $encrypted_89a9eb4f9417_iv -in dns.env.enc -out dns.env -d || true
- python: 3.8
- python: 3.9
- python: 3.10
- python: 3.11

before_install:
- curl -fsSL https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
- sudo apt-get update
- sudo apt-get install pandoc
- pip install pypandoc
Expand All @@ -47,7 +48,7 @@ deploy:
script: npx semantic-release
skip_cleanup: true
on:
python: '3.7'
python: '3.9'
branch: master
- provider: pypi
setuptools_version: "60.8.2"
Expand All @@ -56,5 +57,5 @@ deploy:
repository: https://upload.pypi.org/legacy
skip_cleanup: true
on:
python: '3.7'
python: '3.9'
tags: true
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Python client library to interact with various [IBM Cloud Networking Service API
npx markdown-toc -i README.md
-->

<!-- toc -->
<! -- toc -->

- [Overview](#overview)
- [Prerequisites](#prerequisites)
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
requests>=2.24.0,<3.0
requests>=2.30.0,<3.0
python_dateutil>=2.5.3,<3.0.0
ibm_cloud_sdk_core>=3.14.0,<4.0.0
ibm_cloud_sdk_core>=3.20.1,<4.0.0
2 changes: 0 additions & 2 deletions test/integration/test_transit_gateway_apis_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
class TestTransitGatewayApisV1(unittest.TestCase):
""" Test class for Transit Gateway sdk functions """

@unittest.skip("tests exceeds Travis 10 min limit")

def setUp(self):
""" test case setup """
self.endpoint = os.getenv("TG_SERVICES_SERVICE_URL")
Expand Down
Loading