Update package dependencies (#84)
This commit is contained in:
Родитель
f82dc184a0
Коммит
3d2028c62e
|
@ -14,7 +14,7 @@ Instead, please report them to the Microsoft Security Response Center (MSRC) at
|
|||
|
||||
If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://aka.ms/opensource/security/pgpkey).
|
||||
|
||||
You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://aka.ms/opensource/security/msrc).
|
||||
You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://aka.ms/opensource/security/msrc).
|
||||
|
||||
Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue:
|
||||
|
||||
|
|
|
@ -45,9 +45,9 @@
|
|||
"terser-webpack-plugin": "^4.1.0",
|
||||
"ts-jest": "^26.1.2",
|
||||
"ts-loader": "^8.0.2",
|
||||
"typescript": "^3.9.6",
|
||||
"webpack": "^4.46.0",
|
||||
"webpack-cli": "^3.3.12"
|
||||
"typescript": "^4.9.4",
|
||||
"webpack": "^5.75.0",
|
||||
"webpack-cli": "^5.0.1"
|
||||
},
|
||||
"homepage": "https://github.com/microsoft/quantum-viz.js#readme"
|
||||
}
|
||||
|
|
|
@ -125,7 +125,9 @@ def safety(session: Session) -> None:
|
|||
"""Scan dependencies for insecure packages."""
|
||||
requirements = session.poetry.export_requirements()
|
||||
session.install("safety")
|
||||
session.run("safety", "check", "--full-report", f"--file={requirements}")
|
||||
session.run(
|
||||
"safety", "check", "--full-report", f"--file={requirements}", "--ignore=51549"
|
||||
)
|
||||
|
||||
|
||||
@session(python=python_versions)
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -25,9 +25,9 @@ varname = "^0.8.1"
|
|||
qiskit-terra = {version = ">=0.19.1, <1", optional = true}
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
pytest = "^6.2.4"
|
||||
pytest = "^7.2.0"
|
||||
coverage = {extras = ["toml"], version = "^5.4"}
|
||||
safety = "^1.10.3"
|
||||
safety = "^2.2.0"
|
||||
mypy = "^0.910"
|
||||
typeguard = "^2.12.1"
|
||||
xdoctest = {extras = ["colors"], version = "^0.15.5"}
|
||||
|
|
Загрузка…
Ссылка в новой задаче