Skip to content

Commit

Permalink
Update version to 1.0.11 and path handling in docker_build
Browse files Browse the repository at this point in the history
  • Loading branch information
zackees committed Mar 25, 2024
1 parent d22992d commit 6bf055d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 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.11: Os path cleanup
* 1.0.9: Better support for `ubuntu`
* 1.0.8: Enables experimental `ubuntu` docker image support.
* 1.0.7: Implement wheel support for the docker images.
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.10"
version = "1.0.11"

[tool.setuptools]
package-dir = {"" = "src"}
Expand Down
2 changes: 1 addition & 1 deletion src/python_compile/docker_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def docker_build(
name=f"python-compile-{os_system}",
dockerfile_or_url=dockerpath,
cwd=os.getcwd(),
cmd_list=[str(py_path)],
cmd_list=[py_path.as_posix()],
extra_files=extra_files,
)
return 0

0 comments on commit 6bf055d

Please sign in to comment.