fiddling with poetry export, updating py deps
All checks were successful
test and deploy / Build & Unit Test (push) Successful in 54s
test and deploy / Package & Push Container (push) Successful in 51s

This commit is contained in:
Andy Pack 2024-07-20 13:56:47 +01:00
parent 0d5255992d
commit 38c2e5e430
Signed by: sarsoo
GPG Key ID: A55BA3536A5E0ED7
2 changed files with 17 additions and 9 deletions

View File

@ -232,8 +232,16 @@ class Admin(Cmd):
# filtered = [i[:-2] for i in filtered] # get rid of space and slash at end of line # filtered = [i[:-2] for i in filtered] # get rid of space and slash at end of line
filtered = [i.split(';')[0] for i in depend] filtered = [i.split(';')[0] for i in depend]
final_filtered = []
for f in filtered:
if f.count('@') == 2:
final_filtered.append(f[:f.rindex('@') + 1] + "master")
else:
final_filtered.append(f)
with open('requirements.txt', 'w') as f: with open('requirements.txt', 'w') as f:
f.write("\n".join(filtered)) f.write("\n".join(final_filtered))
# FRONT-END # FRONT-END

16
poetry.lock generated
View File

@ -1403,13 +1403,13 @@ test = ["pytest"]
[[package]] [[package]]
name = "sphinxcontrib-htmlhelp" name = "sphinxcontrib-htmlhelp"
version = "2.0.5" version = "2.0.6"
description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files" description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files"
optional = false optional = false
python-versions = ">=3.9" python-versions = ">=3.9"
files = [ files = [
{file = "sphinxcontrib_htmlhelp-2.0.5-py3-none-any.whl", hash = "sha256:393f04f112b4d2f53d93448d4bce35842f62b307ccdc549ec1585e950bc35e04"}, {file = "sphinxcontrib_htmlhelp-2.0.6-py3-none-any.whl", hash = "sha256:1b9af5a2671a61410a868fce050cab7ca393c218e6205cbc7f590136f207395c"},
{file = "sphinxcontrib_htmlhelp-2.0.5.tar.gz", hash = "sha256:0dc87637d5de53dd5eec3a6a01753b1ccf99494bd756aafecd74b4fa9e729015"}, {file = "sphinxcontrib_htmlhelp-2.0.6.tar.gz", hash = "sha256:c6597da06185f0e3b4dc952777a04200611ef563882e0c244d27a15ee22afa73"},
] ]
[package.extras] [package.extras]
@ -1433,19 +1433,19 @@ test = ["flake8", "mypy", "pytest"]
[[package]] [[package]]
name = "sphinxcontrib-qthelp" name = "sphinxcontrib-qthelp"
version = "1.0.7" version = "1.0.8"
description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp documents" description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp documents"
optional = false optional = false
python-versions = ">=3.9" python-versions = ">=3.9"
files = [ files = [
{file = "sphinxcontrib_qthelp-1.0.7-py3-none-any.whl", hash = "sha256:e2ae3b5c492d58fcbd73281fbd27e34b8393ec34a073c792642cd8e529288182"}, {file = "sphinxcontrib_qthelp-1.0.8-py3-none-any.whl", hash = "sha256:323d6acc4189af76dfe94edd2a27d458902319b60fcca2aeef3b2180c106a75f"},
{file = "sphinxcontrib_qthelp-1.0.7.tar.gz", hash = "sha256:053dedc38823a80a7209a80860b16b722e9e0209e32fea98c90e4e6624588ed6"}, {file = "sphinxcontrib_qthelp-1.0.8.tar.gz", hash = "sha256:db3f8fa10789c7a8e76d173c23364bdf0ebcd9449969a9e6a3dd31b8b7469f03"},
] ]
[package.extras] [package.extras]
lint = ["docutils-stubs", "flake8", "mypy"] lint = ["docutils-stubs", "flake8", "mypy"]
standalone = ["Sphinx (>=5)"] standalone = ["Sphinx (>=5)"]
test = ["pytest"] test = ["defusedxml (>=0.7.1)", "pytest"]
[[package]] [[package]]
name = "sphinxcontrib-serializinghtml" name = "sphinxcontrib-serializinghtml"
@ -1500,7 +1500,7 @@ tabulate = "^0.8.7"
type = "git" type = "git"
url = "https://github.com/Sarsoo/spotframework.git" url = "https://github.com/Sarsoo/spotframework.git"
reference = "master" reference = "master"
resolved_reference = "bc45c8934903ba0e11d3d96a6545566a327ff797" resolved_reference = "801bbd5e2a4b1673eb640395e99cc6058cdf3b8a"
[[package]] [[package]]
name = "tabulate" name = "tabulate"