Skip to content

Commit

Permalink
Trying again to fix bumpversion
Browse files Browse the repository at this point in the history
If I run `bumpversion patch --dry-run --verbose --allow-dirty`, it looks like it will replace things properly
  • Loading branch information
swizzlevixen committed Jul 5, 2018
1 parent 2cabfc7 commit e9e323d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion letterboxd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
name = "letterboxd"
__author__ = """Mark Boszko"""
__email__ = "[email protected]"
0.2.3
__version__ = "0.2.3"


def new(api_base=API_BASE_URL, api_key="", api_secret=""):
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ tag = True

[bumpversion:file:setup.py]
search = version="{current_version}"
replace = {new_version}
replace = version="{new_version}"

[bumpversion:file:letterboxd/__init__.py]
search = __version__ = "{current_version}"
replace = {new_version}
replace = __version__ = "{new_version}"

[bdist_wheel]
universal = 1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
setuptools.setup(
name="letterboxd",
packages=setuptools.find_packages(exclude=["contrib", "docs", "tests*", "sample"]),
0.2.3,
version="0.2.3",
python_requires=">=3.6",
install_requires=requirements,
description="Python 3 wrapper for the Letterboxd API",
Expand Down

0 comments on commit e9e323d

Please sign in to comment.