Skip to content

Commit

Permalink
ci: Fix release-please version string management
Browse files Browse the repository at this point in the history
  • Loading branch information
sellth committed Jan 26, 2024
1 parent 58aa5d0 commit 9605fa7
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .gitattributes

This file was deleted.

2 changes: 1 addition & 1 deletion altamisa/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from ._version import __version__ # noqa
from .version import __version__ # noqa
File renamed without changes.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ testpaths = tests

[coverage:run]
omit =
altamisa/_version.py
altamisa/version.py
relative_files = True
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def parse_requirements(path):

package_root = os.path.abspath(os.path.dirname(__file__))
version = {}
with open(os.path.join(package_root, "altamisa/_version.py")) as fp:
with open(os.path.join(package_root, "altamisa/version.py")) as fp:
exec(fp.read(), version)
version = version["__version__"]

Expand Down

0 comments on commit 9605fa7

Please sign in to comment.