From efa3a479845aba5e0fd72d990894e86a2b64fd74 Mon Sep 17 00:00:00 2001 From: Tristan Lee Date: Thu, 21 Sep 2023 06:14:59 -0500 Subject: [PATCH] changed publishing workflow file to hopefully avoid making a new PyPi package every push to main, and incremented version patch number --- .github/workflows/python-publish.yaml | 1 - tiktok_hashtag_analysis/version.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/python-publish.yaml b/.github/workflows/python-publish.yaml index 83d16e0..e079fc7 100644 --- a/.github/workflows/python-publish.yaml +++ b/.github/workflows/python-publish.yaml @@ -12,7 +12,6 @@ on: release: types: [published] push: - branches: [ "main" ] tags: [ "v*.*.*" ] permissions: diff --git a/tiktok_hashtag_analysis/version.py b/tiktok_hashtag_analysis/version.py index 99da557..1b378a7 100644 --- a/tiktok_hashtag_analysis/version.py +++ b/tiktok_hashtag_analysis/version.py @@ -2,7 +2,7 @@ _MAJOR = "2" _MINOR = "0" # On main and in a nightly release the patch should be one ahead of the last # released build. -_PATCH = "1" +_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 = ""