Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: fireundubh/pyro
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1597538917
Choose a base ref
...
head repository: fireundubh/pyro
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
3 changes: 1 addition & 2 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
ko_fi: fireundubh
patreon: fireundubh
ko_fi: letsplaywithfire
13 changes: 7 additions & 6 deletions .github/workflows/nuitka.yml
Original file line number Diff line number Diff line change
@@ -17,16 +17,17 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up Visual Studio environment
if: success()
uses: seanmiddleditch/gha-setup-vsdevenv@v1
- name: Set up Python 3.8.5 (x64)
uses: seanmiddleditch/gha-setup-vsdevenv@master
- name: Set up Python 3.12.4 (x64)
if: success()
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: 3.8.5
python-version: 3.12.4
architecture: x64
cache: pip
- name: Create virtual environment
if: success()
run: python -m venv env
@@ -38,7 +39,7 @@ jobs:
run: python D:\a\pyro\pyro\build.py --no-zip
- name: Upload artifact
if: success()
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: pyro-master-${{ github.event.repository.pushed_at }}
path: D:\a\pyro\pyro\pyro.dist
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -13,4 +13,7 @@ pyro.build/
pyro.dist/
test_data/
*.bat
*.flg
*.pex
*.psc
.secrets
Loading