Compare commits

..

3 Commits

Author SHA1 Message Date
Ian McEwen
2d4be347e9 disable bump for post1 version 2024-04-08 10:49:13 -07:00
Ian McEwen
26f024dc11 Set minimum version for protobuf to ensure presence of always_print_fields_with_no_presence 2024-04-08 10:47:01 -07:00
github-actions
2b8348ea05 bump version 2024-04-08 17:14:00 +00:00
3 changed files with 15 additions and 15 deletions

View File

@@ -14,19 +14,19 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Bump version
run: >-
bin/bump_version.py
#- name: Bump version
# run: >-
# bin/bump_version.py
- name: Commit updated version.py
id: commit_updated
run: |
git config --global user.name 'github-actions'
git config --global user.email 'bot@noreply.github.com'
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
git add setup.py
git commit -m "bump version" && git push || echo "No changes to commit"
git log -n 1 --pretty=format:"%H" | tail -n 1 | awk '{print "::set-output name=sha::"$0}'
#- name: Commit updated version.py
# id: commit_updated
# run: |
# git config --global user.name 'github-actions'
# git config --global user.email 'bot@noreply.github.com'
# git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
# git add setup.py
# git commit -m "bump version" && git push || echo "No changes to commit"
# git log -n 1 --pretty=format:"%H" | tail -n 1 | awk '{print "::set-output name=sha::"$0}'
- name: Get version
id: get_version

View File

@@ -1,6 +1,6 @@
markdown
pyserial
protobuf
protobuf>=5.26.0
dotmap
pexpect
pyqrcode

View File

@@ -13,7 +13,7 @@ with open("README.md", "r") as fh:
# This call to setup() does all the work
setup(
name="meshtastic",
version="2.3.3",
version="2.3.4.post1",
description="Python API & client shell for talking to Meshtastic devices",
long_description=long_description,
long_description_content_type="text/markdown",
@@ -34,7 +34,7 @@ setup(
include_package_data=True,
install_requires=[
"pyserial>=3.4",
"protobuf>=3.13.0",
"protobuf>=5.26.0",
"requests>=2.25.0",
"pypubsub>=4.0.3",
"dotmap>=1.3.14",