mirror of https://github.com/MISP/PyMISP
chg: Bump minimal PyMISP version to 3.8
parent
cca5287b2b
commit
7ddd7bdc7c
|
@ -12,7 +12,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [3.7, 3.8, 3.9, '3.10']
|
python-version: [3.8, 3.9, '3.10', '3.11']
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -18,9 +18,10 @@ classifiers=[
|
||||||
'Intended Audience :: Science/Research',
|
'Intended Audience :: Science/Research',
|
||||||
'Intended Audience :: Telecommunications Industry',
|
'Intended Audience :: Telecommunications Industry',
|
||||||
'Intended Audience :: Information Technology',
|
'Intended Audience :: Information Technology',
|
||||||
'Programming Language :: Python :: 3.7',
|
|
||||||
'Programming Language :: Python :: 3.8',
|
'Programming Language :: Python :: 3.8',
|
||||||
'Programming Language :: Python :: 3.9',
|
'Programming Language :: Python :: 3.9',
|
||||||
|
'Programming Language :: Python :: 3.10',
|
||||||
|
'Programming Language :: Python :: 3.11',
|
||||||
'Topic :: Security',
|
'Topic :: Security',
|
||||||
'Topic :: Internet'
|
'Topic :: Internet'
|
||||||
]
|
]
|
||||||
|
@ -41,7 +42,7 @@ include = [
|
||||||
"Source" = "https://github.com/MISP/PyMISP"
|
"Source" = "https://github.com/MISP/PyMISP"
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.7"
|
python = "^3.8"
|
||||||
requests = "^2.28.1"
|
requests = "^2.28.1"
|
||||||
python-dateutil = "^2.8.2"
|
python-dateutil = "^2.8.2"
|
||||||
jsonschema = "^4.17.3"
|
jsonschema = "^4.17.3"
|
||||||
|
@ -54,7 +55,7 @@ pydeep2 = {version = "^0.5.1", optional = true}
|
||||||
lief = {version = "^0.12.3", optional = true}
|
lief = {version = "^0.12.3", optional = true}
|
||||||
beautifulsoup4 = {version = "^4.11.1", optional = true}
|
beautifulsoup4 = {version = "^4.11.1", optional = true}
|
||||||
validators = {version = "^0.20.0", optional = true}
|
validators = {version = "^0.20.0", optional = true}
|
||||||
sphinx-autodoc-typehints = {version = "^1.19.5", optional = true}
|
sphinx-autodoc-typehints = {version = "^1.20.1", optional = true}
|
||||||
recommonmark = {version = "^0.7.1", optional = true}
|
recommonmark = {version = "^0.7.1", optional = true}
|
||||||
reportlab = {version = "^3.6.12", optional = true}
|
reportlab = {version = "^3.6.12", optional = true}
|
||||||
pyfaup = {version = "^1.2", optional = true}
|
pyfaup = {version = "^1.2", optional = true}
|
||||||
|
@ -75,11 +76,11 @@ brotli = ['urllib3']
|
||||||
[tool.poetry.group.dev.dependencies]
|
[tool.poetry.group.dev.dependencies]
|
||||||
requests-mock = "^1.10.0"
|
requests-mock = "^1.10.0"
|
||||||
mypy = "^0.991"
|
mypy = "^0.991"
|
||||||
ipython = "^7.34.0"
|
ipython = "^8.8.0"
|
||||||
jupyterlab = "^3.5.2"
|
jupyterlab = "^3.5.2"
|
||||||
types-requests = "^2.28.11.6"
|
types-requests = "^2.28.11.7"
|
||||||
types-python-dateutil = "^2.8.19.5"
|
types-python-dateutil = "^2.8.19.5"
|
||||||
types-redis = "^4.3.21.6"
|
types-redis = "^4.4.0.0"
|
||||||
types-Flask = "^1.1.6"
|
types-Flask = "^1.1.6"
|
||||||
pytest-cov = "^4.0.0"
|
pytest-cov = "^4.0.0"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue