Skip to content

Commit

Permalink
Update documentation to point to python 3.9 instead of 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
parker-hologram committed Sep 5, 2023
1 parent a8c19d3 commit 1c8d9ef
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: '3.7'
python-version: '3.9'

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ includes the following bug fixes
* PPP process is waited on for termination
* SMS parser doesn't break for non SMS-RECEIVE messages
* Add chunking for messages over 512 bytes long
* Install script checks for python versions >= 3.7
* Install script checks for python versions >= 3.9
* Fix bug in disconnect (thanks @akumlehn )
* Send AT Commands from the CLI
* Fix PPP errors related to routing and reconnection
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ in the spirit of bringing connectivity to your devices.

### Requirements:

You will need `ppp` and Python 3.7 installed on your system for the SDK to work.
You will need `ppp` and Python 3.9 installed on your system for the SDK to work.

We wrote scripts to ease the installation process.

Expand Down
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ function install_software() {
}

function check_python_version() {
if ! python3 -V | grep '3.[7-9].[0-9]' > /dev/null 2>&1; then
echo "An unsupported version of python 3 is installed. Must have python 3.7+ installed to use the Hologram SDK"
if ! python3 -V | grep '3.[9-11].[0-9]' > /dev/null 2>&1; then
echo "An unsupported version of python 3 is installed. Must have python 3.9+ installed to use the Hologram SDK"
exit 1
fi
}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
'Topic :: Internet',
'Topic :: Security :: Cryptography',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.9',
],
**kw
)
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.2
0.10.0

0 comments on commit 1c8d9ef

Please sign in to comment.