From d2f105b7f0bbe1b56afd04f8ee5bda2780f1ea49 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Tue, 18 Aug 2026 15:22:39 +0000 Subject: [PATCH] Bump minor version --- .github/workflows/update_ci.yml | 14 +++++++------- CHANGES/1278.feature | 1 - pulp_python/app/__init__.py | 2 +- pyproject.toml | 4 ++-- template_config.yml | 2 +- 5 files changed, 11 insertions(+), 12 deletions(-) delete mode 100644 CHANGES/1278.feature diff --git a/.github/workflows/update_ci.yml b/.github/workflows/update_ci.yml index 9419b3821..2da349f4b 100644 --- a/.github/workflows/update_ci.yml +++ b/.github/workflows/update_ci.yml @@ -238,7 +238,7 @@ jobs: with: fetch-depth: 0 path: "pulp_python" - ref: "3.33" + ref: "3.34" - name: "Run update" working-directory: "pulp_python" @@ -247,21 +247,21 @@ jobs: - name: "Create Pull Request for CI files" uses: "peter-evans/create-pull-request@v8" - id: "create_pr_3_33" + id: "create_pr_3_34" with: token: "${{ secrets.RELEASE_TOKEN }}" path: "pulp_python" committer: "pulpbot " author: "pulpbot " - title: "Update CI files for branch 3.33" - branch: "update-ci/3.33" - base: "3.33" + title: "Update CI files for branch 3.34" + branch: "update-ci/3.34" + base: "3.34" delete-branch: true - name: "Mark PR automerge" working-directory: "pulp_python" run: | - gh pr merge --rebase --auto "${{ steps.create_pr_3_33.outputs.pull-request-number }}" - if: "steps.create_pr_3_33.outputs.pull-request-number" + gh pr merge --rebase --auto "${{ steps.create_pr_3_34.outputs.pull-request-number }}" + if: "steps.create_pr_3_34.outputs.pull-request-number" env: GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}" continue-on-error: true diff --git a/CHANGES/1278.feature b/CHANGES/1278.feature deleted file mode 100644 index 4755dc1d0..000000000 --- a/CHANGES/1278.feature +++ /dev/null @@ -1 +0,0 @@ -Added an `error_on_reject` boolean field to PythonRepository (default: `True`). When `False`, packages rejected by the blocklist or package substitution policies are skipped instead of failing the entire repository version. diff --git a/pulp_python/app/__init__.py b/pulp_python/app/__init__.py index b76fe623b..0b250dcfe 100644 --- a/pulp_python/app/__init__.py +++ b/pulp_python/app/__init__.py @@ -12,7 +12,7 @@ class PulpPythonPluginAppConfig(PulpPluginAppConfig): name = "pulp_python.app" label = "python" - version = "3.34.0.dev" + version = "3.35.0.dev" python_package_name = "pulp-python" domain_compatible = True diff --git a/pyproject.toml b/pyproject.toml index 53af01787..8482d3bea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta' [project] name = "pulp-python" -version = "3.34.0.dev" +version = "3.35.0.dev" description = "pulp-python plugin for the Pulp Project" readme = "README.md" authors = [ @@ -79,7 +79,7 @@ ignore = [ [tool.bumpversion] # This section is managed by the plugin template. Do not edit manually. -current_version = "3.34.0.dev" +current_version = "3.35.0.dev" commit = false tag = false parse = "(?P\\d+)\\.(?P\\d+)\\.(?P0a)?(?P\\d+)(\\.(?P[a-z]+))?" diff --git a/template_config.yml b/template_config.yml index 5f126b5a2..49be7e01a 100644 --- a/template_config.yml +++ b/template_config.yml @@ -22,7 +22,7 @@ disabled_redis_runners: [] docker_fixtures: false extra_files: [] github_org: "pulp" -latest_release_branch: "3.33" +latest_release_branch: "3.34" lint_ignore: [] lint_requirements: true os_required_packages: []