Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
Merge pull request #108 from goosemania/0.2.0b1.dev-bump
Browse files Browse the repository at this point in the history
0.2.0b1.dev version bump
  • Loading branch information
goosemania committed Feb 28, 2020
2 parents 35712d7 + 4109425 commit 4d7c631
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .travis/before_install.sh
Expand Up @@ -82,7 +82,7 @@ if [ -n "$PULP_BINDINGS_PR_NUMBER" ]; then
fi


git clone --depth=1 https://github.com/pulp/pulpcore.git --branch 3.0
git clone --depth=1 https://github.com/pulp/pulpcore.git --branch master

if [ -n "$PULP_PR_NUMBER" ]; then
cd pulpcore
Expand Down
2 changes: 1 addition & 1 deletion .travis/cherrypick.py
Expand Up @@ -67,7 +67,7 @@ def get_merged_commits(pr):
g = Github(GITHUB_TOKEN)
grepo = g.get_repo(REPOSITORY)
(label,) = (l for l in grepo.get_labels() if l.name == PR_LABEL)
issues = grepo.get_issues(labels=[label], state="all")
issues = grepo.get_issues(labels=[label], state="all", sort="updated", direction="asc")

cherrypicks = []

Expand Down
18 changes: 13 additions & 5 deletions .travis/install.sh
Expand Up @@ -49,13 +49,19 @@ fi
if [ -e $TRAVIS_BUILD_DIR/../pulp_file ]; then
PULP_FILE=./pulp_file
else
PULP_FILE=git+https://github.com/pulp/pulp_file.git@0.1
PULP_FILE=git+https://github.com/pulp/pulp_file.git@master
fi

if [ -e $TRAVIS_BUILD_DIR/../pulp_container ]; then
PULP_CONTAINER=./pulp_container
else
PULP_CONTAINER=git+https://github.com/pulp/pulp_container.git@1.0
PULP_CONTAINER=git+https://github.com/pulp/pulp_container.git@master
fi

if [ -e $TRAVIS_BUILD_DIR/../pulp_rpm ]; then
PULP_RPM=./pulp_rpm
else
PULP_RPM=git+https://github.com/pulp/pulp_rpm.git@master
fi

if [ -n "$TRAVIS_TAG" ]; then
Expand All @@ -66,11 +72,12 @@ images:
- pulp-2to3-migration-${TAG}:
image_name: pulp-2to3-migration
tag: $TAG
pulpcore: pulpcore~=3.0.0
pulpcore: pulpcore
plugins:
- ./pulp-2to3-migration
- pulp_file~=0.1.0
- pulp_container~=1.0.0
- pulp_file
- pulp_container
- pulp_rpm
VARSYAML
else
cat > vars/vars.yaml << VARSYAML
Expand All @@ -84,6 +91,7 @@ images:
- ./pulp-2to3-migration
- $PULP_FILE
- $PULP_CONTAINER
- $PULP_RPM
VARSYAML
fi
ansible-playbook -v build.yaml
Expand Down
2 changes: 1 addition & 1 deletion pulp_2to3_migration/__init__.py
@@ -1,3 +1,3 @@
__version__ = "0.1.0rc1"
__version__ = "0.2.0b1.dev"

default_app_config = 'pulp_2to3_migration.app.Pulp2To3MigrationPluginAppConfig'
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -3,15 +3,15 @@
from setuptools import find_packages, setup

requirements = [
'pulpcore>=3.0,<3.1',
'pulpcore>=3.1',
'mongoengine',
'semantic_version',
'jsonschema'
]

setup(
name='pulp-2to3-migration',
version='0.1.0rc1',
version='0.2.0b1.dev',
description='Pulp 2 to Pulp 3 migration tool',
license='GPLv2+',
author='Pulp Team',
Expand Down
9 changes: 5 additions & 4 deletions template_config.yml
Expand Up @@ -2,8 +2,9 @@
# were not present before running plugin-template have been added with their default values.

additional_plugins:
- { name: pulp_file, branch: 0.1, pip_version_specifier: ~=0.1.0 }
- { name: pulp_container, branch: 1.0, pip_version_specifier: ~=1.0.0 }
- { name: pulp_file, branch: master }
- { name: pulp_container, branch: master }
- { name: pulp_rpm, branch: master }
black: false
check_commit_message: true
cherry_pick_automation: false
Expand All @@ -25,8 +26,8 @@ plugin_dash_short: 2to3-migration
plugin_name: pulp-2to3-migration
plugin_snake: pulp_2to3_migration
pulp_settings: null
pulpcore_branch: 3.0
pulpcore_pip_version_specifier: ~=3.0.0
pulpcore_branch: master
pulpcore_pip_version_specifier: null
pydocstyle: false
pypi_username: pulp
stable_branch: null
Expand Down

0 comments on commit 4d7c631

Please sign in to comment.