Skip to content

Commit 9d15a1a

Browse files
committed
fix: update Python version requirements to 3.9 or higher
1 parent fc78aba commit 9d15a1a

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/publish-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
strategy:
2525
matrix:
26-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
26+
python-version: ['3.9', '3.10', '3.11', '3.12']
2727

2828
steps:
2929
- name: Checkout

docs/docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ pyMC_Core provides the fundamental building blocks for mesh network communicatio
4141

4242
### Requirements
4343

44-
- Python 3.8 or higher
44+
- Python 3.9 or higher
4545
- pip package manager
4646

4747
### Basic Installation

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,13 @@ authors = [
1111
description = "A Python MeshCore library with SPI LoRa radio support"
1212
readme = "README.md"
1313
license = {text = "MIT"}
14-
requires-python = ">=3.8"
14+
requires-python = ">=3.9"
1515
classifiers = [
1616
"Development Status :: 4 - Beta",
1717
"Intended Audience :: Developers",
1818
"License :: OSI Approved :: MIT License",
1919
"Operating System :: OS Independent",
2020
"Programming Language :: Python :: 3",
21-
"Programming Language :: Python :: 3.8",
2221
"Programming Language :: Python :: 3.9",
2322
"Programming Language :: Python :: 3.10",
2423
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)