Skip to content

Commit

Permalink
feat: widen more dependencies
Browse files Browse the repository at this point in the history
see #44

Signed-off-by: Jan Kowalleck <[email protected]>
  • Loading branch information
jkowalleck committed Dec 9, 2021
1 parent d8c7ee2 commit 91c775d
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 24 deletions.
32 changes: 16 additions & 16 deletions poetry.lock

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

17 changes: 10 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,18 @@ keywords = [
"Bug Tracker" = "https://github.com/CycloneDX/cyclonedx-python-lib/issues"

[tool.poetry.dependencies]
# keep `requirements.lowest.txt` file in sync
# ATTENTION: keep `requirements.lowest.txt` file in sync
python = "^3.6"
packageurl-python = ">= 0.3.0, < 0.10"
requirements_parser = "^0.2.0"
setuptools = ">=47.0.0, < 59.3"
importlib-metadata = { version = ">= 3.4.0 < 4.9", python = "~3.6 | ~3.7" }
packageurl-python = ">=0.3"
requirements_parser = ">=0.2"
setuptools = ">= 47.0.0"
importlib-metadata = { version = ">=3.4", python = "< 3.8" }
toml = "^0.10.0"
typing-extensions = { version = "^3.10.0", python = "~3.6 | ~3.7" }
types-setuptools = ">= 57.0.0, < 57.5"
# `typing-extensions` need to stay in sync with major version of `python`
typing-extensions = { version = "^3.8", python = "< 3.8" }
# `types-setuptools` need to stay in sync with version of `setuptools` - but 47 was not typed...
types-setuptools = ">= 57.0.0"
# `types-toml` need to stay in sync with version of `toml`
types-toml = "^0.10.0"

[tool.poetry.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion requirements.lowest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ requirements_parser == 0.2.0
setuptools == 47.0.0
importlib-metadata == 3.4.0 # ; python_version < '3.8'
toml == 0.10.0
typing-extensions == 3.10.0 # ; python_version < '3.8'
typing-extensions == 3.8.0 # ; python_version < '3.8'
types-setuptools == 57.0.0
types-toml == 0.10.0

0 comments on commit 91c775d

Please sign in to comment.