-
-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* cleanup & modernise * improve internal naming * Doc: Typo and samples for CPU State and CP State (#508) * doc: samples for S7CpuInfo and S7CpInfo * doc: doc typo 'E' => 'e' * add context handlers * fix installation instructions * reformat tests * properly destroy object * fix cicd --------- Co-authored-by: Paulus Lucas <[email protected]>
- Loading branch information
1 parent
004f60d
commit 21c6ba5
Showing
14 changed files
with
382 additions
and
338 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,9 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "python-snap7" | ||
version = "1.4" | ||
version = "1.4.1" | ||
description = "Python wrapper for the snap7 library" | ||
readme = "README.rst" | ||
authors = [ | ||
{name = "Gijs Molenaar", email = "[email protected]"}, | ||
] | ||
|
@@ -17,14 +18,14 @@ classifiers = [ | |
"Intended Audience :: Manufacturing", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: POSIX", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
license = {text = "MIT"} | ||
requires-python = ">=3.8" | ||
license = {text = "MIT License"} | ||
requires-python = ">=3.9" | ||
keywords = ["snap7", "s7", "siemens", "plc"] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/gijzelaerr/python-snap7" | ||
|
@@ -62,7 +63,7 @@ ignore_missing_imports = true | |
[tool.ruff] | ||
output-format = "full" | ||
line-length = 130 | ||
target-version = "py38" | ||
target-version = "py39" | ||
|
||
[lint] | ||
ignore = [] | ||
|
Oops, something went wrong.