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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
include:
- image_tag: "nightly"
pulp_api_root: "/relocated/djnd/"
upper_bounds: true
python: "3.11"
upper_bounds: true
- image_tag: "latest"
lower_bounds: true
pulp_https: true
Expand Down
2 changes: 1 addition & 1 deletion lint_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Lint requirements
ruff==0.14.10
ruff==0.14.11
mypy==1.19.1
shellcheck-py==0.11.0.1

Expand Down
25 changes: 17 additions & 8 deletions pulp-glue-gem/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,29 +31,38 @@ repository = "https://github.com/pulp/pulp-cli-gem"
changelog = "https://github.com/pulp/pulp-cli-gem/blob/main/CHANGES.md"

[tool.setuptools.packages.find]
# This section is managed by the cookiecutter templates.
where = ["."]
include = ["pulp_glue.*"]
namespaces = true

[tool.setuptools.package-data]
"*" = ["py.typed", "locale/*/LC_MESSAGES/*.mo"]
# This section is managed by the cookiecutter templates.
"*" = ["py.typed"]

[tool.black]
line-length = 100

[tool.isort]
profile = "black"
line_length = 100

[tool.mypy]
# This section is managed by the cookiecutter templates.
strict = true
warn_unused_ignores = false
show_error_codes = true
files = "pulp_glue/**/*.py"
files = "pulp_glue/**/*.py, tests/**/*.py"
namespace_packages = true
explicit_package_bases = true

[[tool.mypy.overrides]]
# This section is managed by the cookiecutter templates.
module = [
"schema.*",
]
ignore_missing_imports = true


[tool.ruff]
# This section is managed by the cookiecutter templates.
line-length = 100

[tool.ruff.lint]
# This section is managed by the cookiecutter templates.
extend-select = ["I"]

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -193,3 +193,4 @@ extend-exclude = ["cookiecutter"]
# This section is managed by the cookiecutter templates.
extend-select = ["I"]


Loading