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
14 changes: 7 additions & 7 deletions .github/workflows/update_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ jobs:
with:
fetch-depth: 0
path: "pulp_python"
ref: "3.17"
ref: "3.18"

- name: "Run update"
working-directory: "pulp_python"
Expand All @@ -211,21 +211,21 @@ jobs:

- name: "Create Pull Request for CI files"
uses: "peter-evans/create-pull-request@v6"
id: "create_pr_3_17"
id: "create_pr_3_18"
with:
token: "${{ secrets.RELEASE_TOKEN }}"
path: "pulp_python"
committer: "pulpbot <[email protected]>"
author: "pulpbot <[email protected]>"
title: "Update CI files for branch 3.17"
branch: "update-ci/3.17"
base: "3.17"
title: "Update CI files for branch 3.18"
branch: "update-ci/3.18"
base: "3.18"
delete-branch: true
- name: "Mark PR automerge"
working-directory: "pulp_python"
run: |
gh pr merge --rebase --auto "${{ steps.create_pr_3_17.outputs.pull-request-number }}"
if: "steps.create_pr_3_17.outputs.pull-request-number"
gh pr merge --rebase --auto "${{ steps.create_pr_3_18.outputs.pull-request-number }}"
if: "steps.create_pr_3_18.outputs.pull-request-number"
env:
GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}"
continue-on-error: true
Expand Down
1 change: 0 additions & 1 deletion CHANGES/+3.85-compat.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/927.doc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/929.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion pulp_python/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class PulpPythonPluginAppConfig(PulpPluginAppConfig):

name = "pulp_python.app"
label = "python"
version = "3.18.0.dev"
version = "3.19.0.dev"
python_package_name = "pulp-python"
domain_compatible = True

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta'

[project]
name = "pulp-python"
version = "3.18.0.dev"
version = "3.19.0.dev"
description = "pulp-python plugin for the Pulp Project"
readme = "README.md"
authors = [
Expand Down Expand Up @@ -76,7 +76,7 @@ ignore = [
[tool.bumpversion]
# This section is managed by the plugin template. Do not edit manually.

current_version = "3.18.0.dev"
current_version = "3.19.0.dev"
commit = false
tag = false
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<alpha>0a)?(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"
Expand Down
2 changes: 1 addition & 1 deletion template_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ extra_files: []
flake8: true
flake8_ignore: []
github_org: pulp
latest_release_branch: '3.17'
latest_release_branch: '3.18'
lint_requirements: true
os_required_packages: []
parallel_test_workers: 8
Expand Down