3 Commits
0.3.2 ... 0.3.3

Author SHA1 Message Date
d5fad2beb6 Bump version 2023-03-28 01:03:53 +02:00
4e4ada293e Merge commit '1e48aa144ec3f0ab1c4126a35de473bb4d8d8207' 2023-03-28 00:59:30 +02:00
1e48aa144e Fix installer 2023-03-28 00:53:35 +02:00
5 changed files with 5 additions and 5 deletions

View File

@@ -19,7 +19,6 @@ jobs:
uses: actions/download-artifact@v3
with:
name: dyn2py.exe
path: dist/dyn2py.exe
- name: Update version number
run: |
$regex = Select-String -Path pyproject.toml -Pattern '^version = "((?:\d\.){2}\d)"$'

3
.gitignore vendored
View File

@@ -6,4 +6,5 @@ build
dist
docs
tests/output_files
Output
Output
dyn2py.exe

View File

@@ -180,7 +180,7 @@ pyinstaller dyn2py.spec
### Create installer for Windows
- 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:
```powershell

View File

@@ -20,7 +20,7 @@ ChangesEnvironment=yes
Name: "english"; MessagesFile: "compiler:Default.isl"
[Files]
Source: "dist\dyn2py.exe"; DestDir: "{app}"; Flags: ignoreversion external
Source: "dyn2py.exe"; DestDir: "{app}"; Flags: ignoreversion
[Code]

View File

@@ -1,6 +1,6 @@
[project]
name = "dyn2py"
version = "0.3.2"
version = "0.3.3"
description = "Extract python code from Dynamo graphs"
readme = "README.md"
requires-python = ">=3.8"