Skip to content

Commit

Permalink
chore: Update dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Nauder <[email protected]>
  • Loading branch information
Nauder committed May 9, 2024
1 parent ddf15f1 commit b7fe4ee
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function checkRequirements
foreach ($filePath in $ProjectFiles)
{
# check if file exists
if (-Not(Test-Path $filePath))
if (-Not (Test-Path $filePath))
{
# print missing file
Write-Error "Missing: $filePath"
Expand All @@ -42,13 +42,13 @@ function checkRequirements
foreach ($package in $Packages)
{
# split package name and version if exists
$package_name, $package_version = $package -split '=='
$package_name, $package_version = $package -split '>='

# Check using installed packages
$pip_packages = pip show $package_name | Out-String

# If not installed add to not_installed list
if (-Not($?))
if (-Not ($?))
{
$not_installed += "$package"
continue
Expand Down
14 changes: 7 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pillow==10.0.1
pygubu==0.31
UnityPy==1.10.2
selenium==4.13.0
bs4==0.0.1
jupyter==1.0.0
pyinstaller==6.0.0
Pillow>=10.0.1
pygubu>=0.31
UnityPy>=1.10.13
selenium>=4.13.0
bs4>=0.0.1
jupyter>=1.0.0
pyinstaller>=6.0.0

0 comments on commit b7fe4ee

Please sign in to comment.