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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: "Set up Python"
uses: "actions/setup-python@v5"
with:
python-version: "3.11"
python-version: "3.14"
- name: "Install python dependencies"
run: |
pip install build setuptools wheel
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/collect_changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fetch-depth: 0
- uses: "actions/setup-python@v5"
with:
python-version: "3.11"
python-version: "3.x"
- name: "Setup git"
run: |
git config user.name pulpbot
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cookiecutter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: "Set up Python"
uses: "actions/setup-python@v5"
with:
python-version: "3.11"
python-version: "3.x"
- name: "Setup git"
run: |
git config user.name pulpbot
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
python:
- "3.11"
- "3.13"
- "3.14"
steps:
- uses: "actions/checkout@v4"
- uses: "actions/cache@v4"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: "Set up Python"
uses: "actions/setup-python@v5"
with:
python-version: "3.11"
python-version: "3.x"
- name: "Install python dependencies"
run: |
pip install toml pygithub
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
fetch-depth: 0
- uses: "actions/setup-python@v5"
with:
python-version: "3.12"
python-version: "3.x"
- name: "Determine PR labels"
run: |
pip install GitPython==3.1.42
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: "Set up Python"
uses: "actions/setup-python@v5"
with:
python-version: "3.11"
python-version: "3.x"
- name: "Setup git"
run: |
git config user.name pulpbot
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: "Set up Python"
uses: "actions/setup-python@v5"
with:
python-version: "3.12"
python-version: "3.14"
- name: "Install Python Test Dependencies"
run: |
pip install dist/pulp_cli-*.whl pulp-glue/dist/pulp_glue-*.whl -r test_requirements.txt
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
- image_tag: "3.63"
pulp_https: "true"
pulp_oauth2: "true"
python: "3.10"
python: "3.14"
- image_tag: "3.49"
pulp_https: "true"
python: "3.10"
Expand Down
2 changes: 1 addition & 1 deletion pulp-glue/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "pulp-glue"
version = "0.33.1.dev"
description = "Version agnostic glue library to talk to pulpcore's REST API."
readme = "README.md"
requires-python = ">=3.9,<3.14"
requires-python = ">=3.9,<3.15"
license = {text = "GPLv2+"}
authors = [
{name = "Pulp Team", email = "pulp-list@redhat.com"},
Expand Down
3 changes: 2 additions & 1 deletion pulp_cli/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "pulp-cli"
version = "0.33.1.dev"
description = "Command line interface to talk to pulpcore's REST API."
readme = "README.md"
requires-python = ">=3.9,<3.14"
requires-python = ">=3.9,<3.15"
license = {text = "GPLv2+"}
authors = [
{name = "Pulp Team", email = "pulp-list@redhat.com"},
Expand Down