Skip to content
Snippets Groups Projects
Commit b69f3f01 authored by Abolfazl  Ziaeemehr's avatar Abolfazl Ziaeemehr Committed by Eleni Mathioulaki
Browse files

fix(py-sbi): add URL to version definition in package.py

parent c91f6c12
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !638. Comments created here will be created in the context of that merge request.
......@@ -7,13 +7,15 @@ class PySbi(PythonPackage):
homepage = "https://sbi-dev.github.io/sbi/v0.23.3/"
git = "https://github.com/sbi-dev/sbi"
pypi = "sbi/sbi-0.23.3.tar.gz"
version("v0.23.3", '93b65b219f6e97cd03a6c979a144ee4238ed5a41205b0c8ec558d0928a549a62')
@run_after('install')
version(
"v0.23.3",
"93b65b219f6e97cd03a6c979a144ee4238ed5a41205b0c8ec558d0928a549a62",
url="https://files.pythonhosted.org/packages/9b/db/2403905f83ac6a32166d853fe0e81640e670b0971535be30ccdb9991bc7a/sbi-0.23.3.tar.gz",
)
@run_after("install")
@on_package_attributes(run_tests=True)
def install_test(self):
pytest = which('pytest')
pytest = which("pytest")
pytest()
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment