Skip to content

Commit

Permalink
Fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
BuildTools committed Aug 27, 2024
1 parent 54ecf5a commit 6af7df8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion install_reqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
proc = subprocess.run(["pip", "install", requirement],
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
proc.check_returncode()
if "Requirement already satisfied" in proc.stdout:
if b"Requirement already satisfied" in proc.stdout:
print(f"[Snazzle] [AutoDep] {requirement} already installed...")
else:
print(f"[Snazzle] [AutoDep] Installed {requirement}")
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ importlib-metadata==6.8.0
itsdangerous==2.1.2
Jinja2==3.1.4
MarkupSafe==2.1.3
numpy==1.24.4
numpy==1.26.4
pandas==2.0.3
python-dateutil==2.8.2
python-dotenv==1.0.0
Expand Down

0 comments on commit 6af7df8

Please sign in to comment.