chg: Drop python 3.8, add python 3.13

pull/1310/head
Raphaël Vinot 2024-11-11 12:38:43 +01:00
parent 5d5f706dc6
commit 317c0d149b
4 changed files with 332 additions and 511 deletions

View File

@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
python-version: [3.9, '3.10', '3.11', '3.12', '3.13']
steps:

826
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -17,11 +17,11 @@ classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Security',
'Topic :: Internet'
]
@ -44,7 +44,7 @@ include = [
"Source" = "https://github.com/MISP/PyMISP"
[tool.poetry.dependencies]
python = "^3.8"
python = "^3.9"
requests = "^2.32.3"
python-dateutil = "^2.9.0.post0"
deprecated = "^1.2.14"
@ -81,8 +81,7 @@ brotli = ['urllib3']
requests-mock = "^1.12.1"
mypy = "^1.13.0"
ipython = [
{version = "<8.13.0", python = "<3.9"},
{version = "^8.18.0", python = ">=3.9"},
{version = "^8.18.0", python = "<3.10"},
{version = "^8.19.0", python = ">=3.10"}
]
jupyterlab = "^4.3.0"
@ -90,7 +89,7 @@ types-requests = "^2.32.0.20241016"
types-python-dateutil = "^2.9.0.20241003"
types-redis = "^4.6.0.20241004"
types-Flask = "^1.1.6"
pytest-cov = "^5.0.0"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry_core>=1.1", "setuptools"]