Skip to content

Commit

Permalink
Bugfix/str2bool updatee (#2007)
Browse files Browse the repository at this point in the history
* Changed to str2bool3

* Updated to use str2bool3
  • Loading branch information
sam-fakhreddine committed Oct 18, 2023
1 parent 5be6cf3 commit b70b130
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
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

0 comments on commit b70b130

Please sign in to comment.