Skip to content

Commit

Permalink
fix(CI): using separate file for tracking version to help with releas…
Browse files Browse the repository at this point in the history
…e-please action
  • Loading branch information
constantinius committed Dec 31, 2024
1 parent 100f1a8 commit 1c28b7c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion pygeofilter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,7 @@
# THE SOFTWARE.
# ------------------------------------------------------------------------------

__version__ = "0.2.4"
from .version import __version__


__all__ = ["__version__"]
1 change: 1 addition & 0 deletions pygeofilter/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.2.4"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[metadata]
version = attr: pygeofilter.__version__
version = attr: pygeofilter.version.__version__

######################################################
# code formating / lint / type checking configurations
Expand Down

0 comments on commit 1c28b7c

Please sign in to comment.