-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7cb71d8
commit 67c308b
Showing
7 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.5.0 | ||
current_version = 0.6.0 | ||
commit = True | ||
tag = True | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,9 +43,9 @@ | |
from jinja2 import BaseLoader, Environment, StrictUndefined | ||
from packaging.requirements import InvalidRequirement | ||
from packaging.version import Version | ||
from shippinglabel_pypi import get_sdist_url, get_wheel_url | ||
from shippinglabel.requirements import ComparableRequirement, combine_requirements | ||
from shippinglabel_conda import make_conda_description, prepare_requirements, validate_requirements | ||
from shippinglabel_pypi import get_sdist_url, get_wheel_url | ||
from whey.config.whey import license_lookup | ||
|
||
# this package | ||
|
@@ -54,7 +54,7 @@ | |
__author__: str = "Dominic Davis-Foster" | ||
__copyright__: str = "2020-2021 Dominic Davis-Foster" | ||
__license__: str = "MIT License" | ||
__version__: str = "0.5.0" | ||
__version__: str = "0.6.0" | ||
__email__: str = "[email protected]" | ||
|
||
__all__ = ("MaryBerry", "make_recipe") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ email: '[email protected]' | |
username: 'repo-helper' | ||
assignee: 'domdfcoding' | ||
primary_conda_channel: "domdfcoding" | ||
version: '0.5.0' | ||
version: '0.6.0' | ||
license: 'MIT' | ||
short_desc: 'A tool to create recipes for building conda packages from distributions on PyPI.' | ||
|
||
|