Skip to content

Commit 3e74038

Browse files
committed
refactor: update dependency versions in requirements files to align with project specifications
1 parent 4c51664 commit 3e74038

File tree

3 files changed

+18
-175
lines changed

3 files changed

+18
-175
lines changed

networkmonitor.log

Lines changed: 0 additions & 163 deletions
This file was deleted.

requirements-build.txt

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Core dependencies - install these first
2-
flask>=2.0.0
3-
flask-cors>=3.0.0
4-
click>=8.0.0
5-
scapy>=2.5.0
2+
flask>=2.0.1,<3.0.0
3+
flask-cors>=3.0.10,<4.0.0
4+
click>=8.0.0,<9.0.0
5+
scapy==2.5.0
6+
werkzeug>=2.0.3,<2.1.0 # Must match Flask 2.0.x requirements
67

78
# Build dependencies
89
pyinstaller>=5.13.0
@@ -16,7 +17,7 @@ pytest-xdist>=3.0.0
1617
mock>=5.0.0
1718

1819
# Platform-specific dependencies
19-
pynsist>=2.6.0; sys_platform == 'win32'
20+
pynsist>=2.6.0; sys_platform == "win32"
2021

2122
# Documentation and UI dependencies
2223
cairosvg>=2.5.0

requirements.txt

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
1-
flask>=2.0.0
2-
flask-cors>=3.0.0
3-
click>=8.0.0
4-
scapy>=2.5.0
1+
# Core dependencies
2+
flask>=2.0.1,<3.0.0 # Updated to match project requirements
3+
werkzeug>=2.0.3,<3.0.0 # Match Flask version requirements
4+
flask-cors>=3.0.10,<4.0.0 # Updated to match project requirements
5+
click>=8.0.0,<9.0.0 # Allow newer compatible versions
6+
scapy==2.5.0
57
psutil>=5.9.0
68
requests>=2.0.0
7-
pywin32>=300; sys_platform == 'win32'
8-
pyinstaller>=5.0.0
9+
10+
# UI dependencies
911
pystray>=0.19.0
10-
Pillow>=10.0.0 # Required for pystray icon support
12+
Pillow>=10.0.0
13+
14+
# Platform-specific dependencies
15+
pywin32>=223; sys_platform == "win32" # Required for Windows system API access

0 commit comments

Comments
 (0)