Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -496,5 +496,5 @@ valid-metaclass-classmethod-first-arg=cls

# Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception".
overgeneral-exceptions=BaseException,
Exception
overgeneral-exceptions=builtins.BaseException,
builtins.Exception
3 changes: 2 additions & 1 deletion ibm_continuous_delivery/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# coding: utf-8

# (C) Copyright IBM Corp. 2019, 2024.
# (C) Copyright IBM Corp. 2019, 2026.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -17,4 +17,5 @@
"""
Version of ibm_continuous_delivery
"""

__version__ = '2.0.7'
13 changes: 7 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ License = "https://github.com/IBM/continuous-delivery-python-sdk/blob/main/LICEN

[project.optional-dependencies]
dev = [
"coverage>=7.9.0,<8.0.0",
"pylint>=3.3.7,<4.0.0",
"pytest>=7.4.4,<8.0.0",
"pytest-cov>=4.1.0,<5.0.0",
"coverage>=7.13.5,<8.0.0",
"pylint>=4.0.5,<5.0.0",
"pytest>=8.4.2,<9.0.0",
"pytest-cov>=7.1.0,<8.0.0",
"responses>=0.25.7,<1.0.0",
"black>=25.0.0,<26.0.0",
"black>=26.3.1,<27.0.0",
]
publish = [
"build",
Expand All @@ -60,4 +60,5 @@ packages = ["ibm_continuous_delivery"]

[tool.black]
line-length = 120
skip-string-normalization = true
skip-string-normalization = true
target-version = ["py310", "py311", "py312", "py313", "py314"]
1 change: 0 additions & 1 deletion test/unit/test_cd_tekton_pipeline_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
import urllib
from ibm_continuous_delivery.cd_tekton_pipeline_v2 import *


_service = CdTektonPipelineV2(authenticator=NoAuthAuthenticator())

_base_url = 'https://api.us-south.devops.cloud.ibm.com/pipeline/v2'
Expand Down
Loading