update CI scripts to allow running CI on the desktop (see below)

* add script to run 'act' local github actions tool (lets devs check github
actions on their local machine)
* Update various github actions to latest (so they can work with the 'act'
tool)
* change a few places where python version was not properly quoted as a
string (act yaml parser is more strict than the github version)
* update pylint min-version to work with recent github actions
* remove pandas/riden requirement (that's in my other branch for now)
This commit is contained in:
geeksville
2024-06-22 07:49:06 -07:00
parent cd5913ae6d
commit 9e319f3c52
7 changed files with 50 additions and 393 deletions

View File

@@ -7,7 +7,7 @@ license = "GPL-3.0-only"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9,<3.13" # was 3.7 for production but 3.9 is needed for pandas, bleak requires a max of 3.13 for some reason
python = "^3.8,<3.13" # was 3.7 for production but, 3.8 is needed for pytap2, 3.9 is needed for pandas, bleak requires a max of 3.13 for some reason
pyserial = "^3.5"
protobuf = ">=5.26.0"
dotmap = "^1.3.30"
@@ -36,9 +36,7 @@ pytest = "^8.2.2"
pytest-cov = "^5.0.0"
pdoc3 = "^0.10.0"
autopep8 = "^2.1.0"
riden = {git = "https://github.com/shaybox/riden.git"}
pandas = "^2.2.2"
pylint = "^2.11.1"
pylint = "^3.2.3"
pytap2 = "^2.3.0"
[tool.poetry.extras]