Skip to content

Tags: zoispag/go-python-runner

Tags

v2.0.0

Toggle v2.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
refactor: misc code quality improvements (#6)

* refactor: misc code quality improvements

- pep518.go: replace deprecated ioutil.ReadFile with os.ReadFile
- pep518.go: replace panic with log.Error + early return on read failure
- poetry.go: fix CWD-relative fileExists bug (filepath.Join path+poetry.toml)
- run.go: ExecutePython delegates to GetPythonRunCommand; drop redundant else
- uv/pipenv/pip/poetry.go: simplify log.Error(fmt.Sprintf("%s", err.Error())) to log.Error(err.Error())
- go mod tidy

* refactor: restore inline comments removed during cleanup

v1.2.1

Toggle v1.2.1's commit message

v1.2.0

Toggle v1.2.0's commit message

Verified

This commit was signed with the committer’s verified signature. The key has expired.
zoispag Zois Pagoulatos
Update logrus

v1.1.0

Toggle v1.1.0's commit message

Verified

This commit was signed with the committer’s verified signature. The key has expired.
zoispag Zois Pagoulatos
Add GetPythonRunCommand public method to return a cmd instance

v1.0.1

Toggle v1.0.1's commit message

Verified

This commit was signed with the committer’s verified signature. The key has expired.
zoispag Zois Pagoulatos
Update README and add MIT license

v1.0.0

Toggle v1.0.0's commit message

Verified

This commit was signed with the committer’s verified signature. The key has expired.
zoispag Zois Pagoulatos
Make ExecutePython usable from package