mirror of
https://github.com/meshtastic/python.git
synced 2026-01-15 11:18:05 -05:00
Compare commits
3 Commits
2.3.4
...
2.3.4.post
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2d4be347e9 | ||
|
|
26f024dc11 | ||
|
|
2b8348ea05 |
24
.github/workflows/release.yml
vendored
24
.github/workflows/release.yml
vendored
@@ -14,19 +14,19 @@ jobs:
|
|||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Bump version
|
#- name: Bump version
|
||||||
run: >-
|
# run: >-
|
||||||
bin/bump_version.py
|
# bin/bump_version.py
|
||||||
|
|
||||||
- name: Commit updated version.py
|
#- name: Commit updated version.py
|
||||||
id: commit_updated
|
# id: commit_updated
|
||||||
run: |
|
# run: |
|
||||||
git config --global user.name 'github-actions'
|
# git config --global user.name 'github-actions'
|
||||||
git config --global user.email 'bot@noreply.github.com'
|
# 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 remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
|
||||||
git add setup.py
|
# git add setup.py
|
||||||
git commit -m "bump version" && git push || echo "No changes to commit"
|
# 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}'
|
# git log -n 1 --pretty=format:"%H" | tail -n 1 | awk '{print "::set-output name=sha::"$0}'
|
||||||
|
|
||||||
- name: Get version
|
- name: Get version
|
||||||
id: get_version
|
id: get_version
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
markdown
|
markdown
|
||||||
pyserial
|
pyserial
|
||||||
protobuf
|
protobuf>=5.26.0
|
||||||
dotmap
|
dotmap
|
||||||
pexpect
|
pexpect
|
||||||
pyqrcode
|
pyqrcode
|
||||||
|
|||||||
4
setup.py
4
setup.py
@@ -13,7 +13,7 @@ with open("README.md", "r") as fh:
|
|||||||
# This call to setup() does all the work
|
# This call to setup() does all the work
|
||||||
setup(
|
setup(
|
||||||
name="meshtastic",
|
name="meshtastic",
|
||||||
version="2.3.3",
|
version="2.3.4.post1",
|
||||||
description="Python API & client shell for talking to Meshtastic devices",
|
description="Python API & client shell for talking to Meshtastic devices",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
@@ -34,7 +34,7 @@ setup(
|
|||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"pyserial>=3.4",
|
"pyserial>=3.4",
|
||||||
"protobuf>=3.13.0",
|
"protobuf>=5.26.0",
|
||||||
"requests>=2.25.0",
|
"requests>=2.25.0",
|
||||||
"pypubsub>=4.0.3",
|
"pypubsub>=4.0.3",
|
||||||
"dotmap>=1.3.14",
|
"dotmap>=1.3.14",
|
||||||
|
|||||||
Reference in New Issue
Block a user