Skip to content

Commit

Permalink
Update version to 1.0.13 and optimize file search
Browse files Browse the repository at this point in the history
  • Loading branch information
zackees committed Mar 25, 2024
1 parent a9820ca commit cec7673
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ Run `./lint.sh` to find linting errors using `pylint`, `flake8` and `mypy`.
* https://hub.docker.com/r/sickcodes/docker-osx

# Releases
* 1.0.13: Bug fix
* 1.0.12: Bug fix
* 1.0.11: Os path cleanup
* 1.0.9: Better support for `ubuntu`
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies = [
"pytest-xdist"
]
# Change this with the version number bump.
version = "1.0.12"
version = "1.0.13"

[tool.setuptools]
package-dir = {"" = "src"}
Expand Down
4 changes: 2 additions & 2 deletions src/python_compile/assets/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ else
fi

python -m nuitka --standalone --follow-imports --onefile --lto=yes --python-flag=-OO /host_dir/"$@"
for file in $(find /tmp_dir -type f -name "*.bin"); do chmod +x "$file"; done
for file in $(find /tmp_dir -type f -name "*.bin"); do gzip "$file"; done
for file in $(find . -maxdepth 1 -type f -name "*.bin"); do chmod +x "$file"; done
for file in $(find . -maxdepth 1 -type f -name "*.bin"); do gzip "$file"; done

mv *.gz /host_dir/

0 comments on commit cec7673

Please sign in to comment.