Skip to content

Commit

Permalink
fix(build): bump python core to 3.22.0 (#277)
Browse files Browse the repository at this point in the history
Signed-off-by: Phil Adams <phil_adams@us.ibm.com>
  • Loading branch information
padamstx authored Oct 16, 2024
1 parent cf86dad commit 665b1bd
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 18 deletions.
36 changes: 19 additions & 17 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -43,27 +43,29 @@ confidence=HIGH
# --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use "--disable=all --enable=classes
# --disable=W".
disable=too-many-arguments,
too-many-public-methods,
too-few-public-methods,
too-many-instance-attributes,
too-many-locals,
too-many-branches,
too-many-lines,
line-too-long,
similarities,
disable=bad-inline-option,
deprecated-pragma,
disallowed-name,
file-ignored,
global-statement,
import-error,
raw-checker-failed,
bad-inline-option,
invalid-name,
line-too-long,
locally-disabled,
file-ignored,
raw-checker-failed,
similarities,
suppressed-message,
useless-suppression,
deprecated-pragma,
too-few-public-methods,
too-many-arguments,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-positional-arguments,
too-many-public-methods,
use-implicit-booleaness-not-comparison,
use-symbolic-message-instead,
invalid-name,
global-statement,
use-implicit-booleaness-not-comparison
useless-suppression

# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ classifiers = [
]
keywords=["ibm", "cloud", "ibm cloud services", "ibm cloud platform services"]
dependencies = [
"ibm_cloud_sdk_core>=3.21.0,<4.0.0",
"ibm_cloud_sdk_core>=3.22.0,<4.0.0",
]

[project.urls]
Expand Down

0 comments on commit 665b1bd

Please sign in to comment.