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 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
__pycache__/
build/
tests/cli.toml
pytest_pulp_cli/GPG-PRIVATE-KEY-fixture-signing
GPG-PRIVATE-KEY-fixture-signing
site/
dist/
*.po~
4 changes: 2 additions & 2 deletions pulp-glue/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools<81"]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -25,7 +25,7 @@ classifiers = [
dependencies = [
"importlib_resources>=5.4.0,<6.2;python_version<'3.9'",
"multidict>=6.0.5,<6.5",
"packaging>=20.0,<=25.0", # CalVer
"packaging>=20.0,<=26.2", # CalVer
"requests>=2.24.0,<2.33",
]

Expand Down
3 changes: 2 additions & 1 deletion pulpcore/cli/common/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,8 @@ def load_labels_callback(


def create_content_json_callback(
context_class: t.Optional[t.Type[PulpContentContext]] = None, schema: s.Schema = None
context_class: t.Optional[t.Type[PulpContentContext]] = None,
schema: t.Optional[s.Schema] = None,
) -> t.Any:
@load_file_wrapper
def _callback(
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools<81"]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -25,7 +25,7 @@ classifiers=[
dependencies = [
"pulp-glue==0.30.5.dev",
"click>=8.0.0,<8.2", # Proven to not do semver.
"packaging>=20.0,<=25", # CalVer
"packaging>=20.0,<=26.2", # CalVer
"PyYAML>=5.3,<6.1",
"schema>=0.7.5,<0.8",
"tomli>=2.0.0,<2.1;python_version<'3.11'",
Expand Down
Loading