mirror of https://github.com/MISP/PyMISP
chg: Bump version, deps
parent
eac55dbb6c
commit
6742b029a5
|
@ -838,11 +838,14 @@ dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"]
|
|||
|
||||
[[package]]
|
||||
name = "docutils"
|
||||
version = "0.20.1"
|
||||
version = "0.21.1"
|
||||
description = "Docutils -- Python Documentation Utilities"
|
||||
optional = true
|
||||
python-versions = "*"
|
||||
files = []
|
||||
python-versions = ">=3.9"
|
||||
files = [
|
||||
{file = "docutils-0.21.1-py3-none-any.whl", hash = "sha256:14c8d34a55b46c88f9f714adb29cefbdd69fb82f3fef825e59c5faab935390d8"},
|
||||
{file = "docutils-0.21.1.tar.gz", hash = "sha256:65249d8a5345bc95e0f40f280ba63c98eb24de35c6c8f5b662e3e8948adea83f"},
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "easygui"
|
||||
|
@ -3534,7 +3537,7 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p
|
|||
|
||||
[extras]
|
||||
brotli = ["urllib3"]
|
||||
docs = ["Sphinx", "recommonmark", "sphinx-autodoc-typehints"]
|
||||
docs = ["Sphinx", "docutils", "recommonmark", "sphinx-autodoc-typehints"]
|
||||
email = ["RTFDE", "extract_msg", "oletools"]
|
||||
fileobjects = ["lief", "pydeep2", "python-magic"]
|
||||
openioc = ["beautifulsoup4"]
|
||||
|
@ -3545,4 +3548,4 @@ virustotal = ["validators"]
|
|||
[metadata]
|
||||
lock-version = "2.0"
|
||||
python-versions = "^3.8"
|
||||
content-hash = "7c26dd3629fc8bf389c9c2299c9c14a11c41001a43855a619581878e99928ac0"
|
||||
content-hash = "7c5ace0dd762f11b8ae8fbcf8a213ecef00db5540709ac82d724c41cb63c4054"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "pymisp"
|
||||
version = "2.4.188"
|
||||
version = "2.4.190"
|
||||
description = "Python API for MISP."
|
||||
authors = ["Raphaël Vinot <raphael.vinot@circl.lu>"]
|
||||
license = "BSD-2-Clause"
|
||||
|
@ -54,7 +54,8 @@ lief = {version = "^0.14.1", optional = true}
|
|||
beautifulsoup4 = {version = "^4.12.3", optional = true}
|
||||
validators = {version = "^0.28.0", optional = true}
|
||||
sphinx-autodoc-typehints = {version = "^2.1.0", optional = true, python = ">=3.9"}
|
||||
recommonmark = {version = "^0.7.1", optional = true}
|
||||
docutils = {version = "^0.21.1", optional = true, python = ">=3.9"}
|
||||
recommonmark = {version = "^0.7.1", optional = true, python = ">=3.9"}
|
||||
reportlab = {version = "^4.1.0", optional = true}
|
||||
pyfaup = {version = "^1.2", optional = true}
|
||||
publicsuffixlist = {version = "^0.10.0.20240403", optional = true}
|
||||
|
@ -65,7 +66,7 @@ Sphinx = {version = "^7.3.6", python = ">=3.9", optional = true}
|
|||
fileobjects = ['python-magic', 'pydeep2', 'lief']
|
||||
openioc = ['beautifulsoup4']
|
||||
virustotal = ['validators']
|
||||
docs = ['sphinx-autodoc-typehints', 'recommonmark', 'sphinx']
|
||||
docs = ['sphinx-autodoc-typehints', 'recommonmark', 'sphinx', 'docutils']
|
||||
pdfexport = ['reportlab']
|
||||
url = ['pyfaup']
|
||||
email = ['extract_msg', "RTFDE", "oletools"]
|
||||
|
|
Loading…
Reference in New Issue