Skip to content
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

Bugfix/str2bool updatee #2007

Merged
merged 2 commits into from
Oct 18, 2023
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
11 changes: 6 additions & 5 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ authors = [
"Onica Group LLC <opensource@onica.com>",
]
maintainers = [
"Kyle Finley <kyle@finley.sh>",
"Kyle Finley <kyle@finley.sh>", "Sam Fakhreddine <sam.fakhreddine@rackspace.com>"
]
readme = "README.md"
homepage = "https://github.com/onicagroup/runway"
Expand All @@ -29,7 +29,7 @@ packages = [
]

[tool.poetry.dependencies]
python = ">=3.8, <4"
python = ">=3.8, <3.12"

# dependencies needed for building docs are included here.
# they are marked as "optional" and are installed as the extra "docs".
Expand Down Expand Up @@ -73,7 +73,7 @@ yamllint = "*"
pipenv = "2022.1.8"
moto = "3.0.5"
testfixtures = "^7.0.3"
str2bool = "^1.1"
str2bool3 = "*"

[tool.poetry.dev-dependencies]
black = ">=22.1"
Expand Down Expand Up @@ -286,7 +286,7 @@ min-public-methods = 0

[tool.pylint.format]
# http://pylint.pycqa.org/en/latest/technical_reference/features.html#format-checker
max-line-length = 100
max-line-length = 120
max-module-lines = 1000

[tool.pylint.imports]
Expand Down
2 changes: 1 addition & 1 deletion runway/context/_runway.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import sys
from typing import TYPE_CHECKING, Any, Optional, Union, cast

from str2bool import str2bool as strtobool # type: ignore
from str2bool3 import str2bool as strtobool # type: ignore

from ..compat import cached_property
from ..core.components import DeployEnvironment
Expand Down
Loading