Skip to content

Commit

Permalink
Merge pull request #97 from Elip100/fix-reqs
Browse files Browse the repository at this point in the history
Fix bugs with installing dependencies
  • Loading branch information
redstone-dev authored Oct 26, 2024
2 parents 5878dd0 + 6af7df8 commit 5eed727
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 5eed727

Please sign in to comment.