Skip to content

Commit

Permalink
fixing kepler json and version
Browse files Browse the repository at this point in the history
  • Loading branch information
msramalho committed Jul 1, 2022
1 parent f287cb8 commit c6e3671
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
name: Release
runs-on: ubuntu-latest
needs: [checks]
# if: startsWith(github.ref, 'refs/tags/')
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v1

Expand Down
2 changes: 1 addition & 1 deletion geoclustering/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
_MINOR = "1"
# On main and in a nightly release the patch should be one ahead of the last
# released build.
_PATCH = "0"
_PATCH = "2"
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
# https://semver.org/#is-v123-a-semantic-version for the semantics.
_SUFFIX = ""
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
author_email="[email protected]",
license="MIT",
packages=["geoclustering"],
package_data={"geoclustering": ["kepler_config.json"]}
keywords=["cluster", "gis", "pattern-analysis"],
entry_points={"console_scripts": ["geoclustering = geoclustering.__main__:main"]},
install_requires=[
Expand Down

0 comments on commit c6e3671

Please sign in to comment.