Skip to content

Commit

Permalink
Drop Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrudd2 committed Oct 4, 2024
1 parent 333edb5 commit 96b5e51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
pymodbus-version: ["2.5.3", "3.0.2", "3.1.3", "3.2.2", "3.3.1", "3.4.1", "3.5.4", "3.6.9", "3.7.0"]
exclude:
- python-version: "3.10"
Expand All @@ -27,9 +27,6 @@ jobs:
pymodbus-version: "2.5.3"
- python-version: "3.13"
pymodbus-version: "2.5.3"
- python-version: "3.8"
pymodbus-version: "3.7.0"

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ name = "clickplc"
version = "0.11.0"
description="Python driver for AutomationDirect (formerly Koyo) Ethernet ClickPLCs."
dependencies = [
"pymodbus>=2.4.0; python_version == '3.8'",
"pymodbus>=2.4.0; python_version == '3.9'",
"pymodbus>=3.0.2,<3.8.0; python_version >= '3.10'",
]
Expand All @@ -24,7 +23,6 @@ classifiers = [
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down Expand Up @@ -57,7 +55,7 @@ packages = ["clickplc"]
[tool.ruff]
extend-exclude = ["venv*"]
line-length = 120
target-version = "py38"
target-version = "py310"

[tool.ruff.lint]
ignore = [
Expand Down

0 comments on commit 96b5e51

Please sign in to comment.