Skip to content

Commit fe29b78

Browse files
authored
Merge pull request #929 from microsoft/deps/consolidate-august-2026
Consolidate dependency updates and add Python 3.14 support Admin-merged - no functionality changes, only security-related dependency fixes
2 parents 105c462 + ee8e0fe commit fe29b78

6 files changed

Lines changed: 12 additions & 9 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
permissions: read-all
1919
strategy:
2020
matrix:
21-
python-version: ["3.10", "3.11", "3.12", "3.13"]
21+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2222
steps:
2323
# Print out details about the run
2424
- name: Dump GitHub context

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ httpx>=0.28.0, <1.0.0
1010
ipython>=8.39.0; python_version <= '3.10'
1111
ipython>=9.13.0; python_version >= '3.11'
1212
jinja2>=3.1.6, <3.2.0
13-
numpy>=1.15.4
13+
numpy>=2.5.1
1414
pandas>=1.1.5
1515
pydantic>=1.8.0, <3.0.0
1616
python-dateutil>=2.9.0.post0

msticpy/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version file."""
22

3-
VERSION = "3.0.2"
3+
VERSION = "3.0.3"

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
aiohttp>=3.13.5
1+
aiohttp>=3.14.3
22
async-cache>=1.1.1
33
bandit>=1.9.4
44
beautifulsoup4>=4.15.0

requirements.txt

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
aiohttp>=3.14.0 # (sec vuln) transitive dependency via geoip2
1+
aiohttp>=3.14.3 # (sec vuln) transitive dependency via geoip2
22
attrs>=18.2.0
33
azure-common>=1.1.18
44
azure-core>=1.38.0
@@ -13,8 +13,8 @@ beautifulsoup4>=4.15.0
1313
bokeh>=3.0.0
1414
cryptography>=48.0.0
1515
deprecated>=1.2.4
16-
dnspython>=2.0.0, <3.0.0
17-
folium>=0.9.0
16+
dnspython>=2.8.0, <3.0.0
17+
folium>=0.20.0
1818
geoip2>=2.9.0
1919
h11>=0.16.0 # (sec vuln) transitive dependency via httpx
2020
html5lib
@@ -32,10 +32,12 @@ msal>=1.12.0
3232
msrest>=0.6.0
3333
nest_asyncio>=1.6.0
3434
networkx>=2.2
35-
numpy>=1.15.4 # pandas
35+
numpy>=2.2.6, <2.3.0; python_version == '3.10'
36+
numpy>=2.4.6, <2.5.0; python_version == '3.11'
37+
numpy>=2.5.1; python_version >= '3.12'
3638
packaging>=26.2
3739
pandas>=1.4.0, <3.0.0
38-
panel>=1.2.1
40+
panel>=1.9.3
3941
Pillow>=12.2.0 # (sec vuln) transitive dependency via bokeh
4042
pydantic>=1.8.0, <3.0.0
4143
pygments>=2.20.0

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ classifiers =
2929
Programming Language :: Python :: 3.11
3030
Programming Language :: Python :: 3.12
3131
Programming Language :: Python :: 3.13
32+
Programming Language :: Python :: 3.14
3233
License :: OSI Approved :: MIT License
3334
Operating System :: OS Independent
3435
Development Status :: 5 - Production/Stable

0 commit comments

Comments
 (0)