Skip to content

Commit

Permalink
Fix version mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
Russell Toris committed May 27, 2024
1 parent b5bd46c commit e3357ac
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[bumpversion]
commit = true
current_version = 1.13.1
current_version = 1.13.0
tag = true

[bumpversion:file:setup.py]
Expand Down
21 changes: 20 additions & 1 deletion .github/workflows/build-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,28 @@ jobs:
- name: Upload codecov
uses: codecov/codecov-action@v1

lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Lint with flake8
run: |
flake8 inorbit_edge --count --verbose --show-source --statistics
- name: Check with black
run: |
black --check inorbit_edge --exclude inorbit_edge/inorbit_pb2.py
publish:
if: "contains(github.event.head_commit.message, 'Bump version')"
needs: [test, lint]
runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from setuptools import find_packages, setup

# Do not edit manually, always use bumpversion (see CONTRIBUTING.rst)
VERSION = "1.13.0"
VERSION = "1.14.0"

GITHUB_ORG = "https://github.com/inorbit-ai"
GITHUB_REPO = f"{GITHUB_ORG}/edge-sdk-python"
Expand Down

0 comments on commit e3357ac

Please sign in to comment.