Skip to content

Commit

Permalink
Fix issue with building python_Levenshtein on Windows (#981)
Browse files Browse the repository at this point in the history
  • Loading branch information
ribbanya authored Oct 8, 2023
1 parent c5e0a8c commit e16cc84
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ v1.02 - main.dol: `sha1: 08e0bf20134dfcb260699671004527b2d6bb1a45`
The easiest way to get set up is with [scoop](https://scoop.sh/). You will also need our compilers (linked below).

1. Open a PowerShell window (`Win+X`). You do not need admin privileges.
1. Install `scoop`, `git`, `python`, and `mingw`. You can skip these if you already have `git`, `python` (3.9+), `bash`, `gcc`, and `make` in your `PATH`.
1. Install `scoop`, `git`, `python`, `mingw`, and `cmake`. You can skip these if you already have `git`, `python` (3.9+), `bash`, `gcc`, `make`, and `cmake` in your `PATH`.
```ps1
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser # Optional: Needed to run a remote script the first time
irm get.scoop.sh | iex
scoop install git python mingw
scoop install git python mingw cmake
```
1. Clone the repository and change directory into it.
```ps1
Expand Down
1 change: 1 addition & 0 deletions .github/packages/build-windows/setup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
git `
python `
mingw `
cmake `
megatools
if ($LASTEXITCODE -ne 0)
{
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ pcpp==1.30
pyelftools==0.29
Pygments>=2.15.0
pyperclip==1.8.2
python_Levenshtein==0.20.9
python_Levenshtein>=0.20.9
watchdog==2.2.1

0 comments on commit e16cc84

Please sign in to comment.