Skip to content

Commit

Permalink
try winpython
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidcarbon committed Jun 7, 2024
1 parent 8c906e0 commit 25b87de
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
on:
push:
branches:
- main
paths:
- .github/**
- examples/**
- '!README.md'

env:
MAIN_BRANCH_URL: "https://raw.githubusercontent.com/liquidcarbon/puppy/main/"
PYTHONIOENCODING: "utf8" # https://github.com/pallets/click/issues/2121

jobs:
win-winpython:
runs-on: windows-latest
steps:
- name: Download WinPython installer
run: Invoke-WebRequest -Uri "https://github.com/winpython/winpython/releases/download/7.5.20240410final/Winpython64-3.12.3.0.exe" -OutFile "Winpython64-3.12.3.0.exe"

- name: Install WinPython
run: Start-Process -FilePath "Winpython64-3.12.3.0.exe" -ArgumentList "/S" -Wait

- name: Verify installation
run: |
$env:Path += ";C:\WinPython-64bit\python-3.12.3\Scripts"
python --version

0 comments on commit 25b87de

Please sign in to comment.