Skip to content

Commit

Permalink
Add the setuptools in pypi_validate (#796)
Browse files Browse the repository at this point in the history
  • Loading branch information
athiruma authored Jun 5, 2024
1 parent b408673 commit 174662c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = False
tag = True
current_version = 1.1.266
current_version = 1.1.267
tag_name = v{current_version}
message = GitHub Actions Build {current_version}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,8 @@ jobs:
# Verfiy and wait till latest cloud-governance version will be updated in Pypi (timeout 900 seconds)
timeout=900
sleep_time=30
pip --no-cache-dir install setuptools cloud-governance --upgrade
expected_version=$(python3 setup.py --version)
pip --no-cache-dir install cloud-governance --upgrade
build=$(pip freeze | grep cloud-governance | sed 's/==/=/g')
actual_version="$(cut -d'=' -f2 <<<"$build")"
current_wait_time=0
Expand Down Expand Up @@ -338,9 +338,9 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: 🎁 Bump Version
run: |
pip install setuptools bumpversion
version=$(python3 setup.py --version)
git checkout main
pip install bumpversion
git config --global user.email ${{ secrets.EMAIL }}
git config --global user.name ${{ secrets.NAME }}
git config pull.rebase false # merge (the default strategy)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from os import path
from setuptools import setup, find_packages

__version__ = '1.1.266'
__version__ = '1.1.267'

here = path.abspath(path.dirname(__file__))

Expand Down

0 comments on commit 174662c

Please sign in to comment.