mirror of
https://github.com/infeeeee/dyn2py
synced 2025-12-16 22:16:18 +01:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d5fad2beb6 | |||
| 4e4ada293e | |||
| 1e48aa144e |
1
.github/workflows/build-installer.yml
vendored
1
.github/workflows/build-installer.yml
vendored
@@ -19,7 +19,6 @@ jobs:
|
|||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: dyn2py.exe
|
name: dyn2py.exe
|
||||||
path: dist/dyn2py.exe
|
|
||||||
- name: Update version number
|
- name: Update version number
|
||||||
run: |
|
run: |
|
||||||
$regex = Select-String -Path pyproject.toml -Pattern '^version = "((?:\d\.){2}\d)"$'
|
$regex = Select-String -Path pyproject.toml -Pattern '^version = "((?:\d\.){2}\d)"$'
|
||||||
|
|||||||
3
.gitignore
vendored
3
.gitignore
vendored
@@ -6,4 +6,5 @@ build
|
|||||||
dist
|
dist
|
||||||
docs
|
docs
|
||||||
tests/output_files
|
tests/output_files
|
||||||
Output
|
Output
|
||||||
|
dyn2py.exe
|
||||||
@@ -180,7 +180,7 @@ pyinstaller dyn2py.spec
|
|||||||
### Create installer for Windows
|
### Create installer for Windows
|
||||||
|
|
||||||
- Install Inno Setup: https://jrsoftware.org/isdl.php
|
- Install Inno Setup: https://jrsoftware.org/isdl.php
|
||||||
- The already built exe should be in `dist\dyn2py.exe`
|
- The already built exe should be in the root folder
|
||||||
- Run this in powershell:
|
- Run this in powershell:
|
||||||
|
|
||||||
```powershell
|
```powershell
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ ChangesEnvironment=yes
|
|||||||
Name: "english"; MessagesFile: "compiler:Default.isl"
|
Name: "english"; MessagesFile: "compiler:Default.isl"
|
||||||
|
|
||||||
[Files]
|
[Files]
|
||||||
Source: "dist\dyn2py.exe"; DestDir: "{app}"; Flags: ignoreversion external
|
Source: "dyn2py.exe"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
|
||||||
|
|
||||||
[Code]
|
[Code]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "dyn2py"
|
name = "dyn2py"
|
||||||
version = "0.3.2"
|
version = "0.3.3"
|
||||||
description = "Extract python code from Dynamo graphs"
|
description = "Extract python code from Dynamo graphs"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.8"
|
requires-python = ">=3.8"
|
||||||
|
|||||||
Reference in New Issue
Block a user