Skip to content

Commit c6e3671

Browse files
committed
fixing kepler json and version
1 parent f287cb8 commit c6e3671

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
name: Release
7575
runs-on: ubuntu-latest
7676
needs: [checks]
77-
# if: startsWith(github.ref, 'refs/tags/')
77+
if: startsWith(github.ref, 'refs/tags/')
7878
steps:
7979
- uses: actions/checkout@v1
8080

geoclustering/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
_MINOR = "1"
33
# On main and in a nightly release the patch should be one ahead of the last
44
# released build.
5-
_PATCH = "0"
5+
_PATCH = "2"
66
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
77
# https://semver.org/#is-v123-a-semantic-version for the semantics.
88
_SUFFIX = ""

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
author_email="tech@bellingcat.com",
2323
license="MIT",
2424
packages=["geoclustering"],
25+
package_data={"geoclustering": ["kepler_config.json"]}
2526
keywords=["cluster", "gis", "pattern-analysis"],
2627
entry_points={"console_scripts": ["geoclustering = geoclustering.__main__:main"]},
2728
install_requires=[

0 commit comments

Comments
 (0)