Loren Gordon

Results 184 comments of Loren Gordon

Ahh, perhaps just tell the user that `-` is an invalid character and exit, the way cookiecutter-pypackage does? https://github.com/audreyr/cookiecutter-pypackage/blob/master/hooks/pre_gen_project.py

Another option that looks to be working is to use the `.replace()` notation rather than `| replace`. Noticed this in the [`cookiecutter-pylibrary`](https://github.com/ionelmc/cookiecutter-pylibrary) project...

Possibly related, I was poking around the dnf repos and noticed this issue, looking to replace `librepo` with [`powerloader`](https://github.com/mamba-org/powerloader): * https://github.com/rpm-software-management/libdnf/issues/1452 And powerloader claims native S3 support...

> I might be missing something, and if I am please let me know, but I think you might be able to use CodeBuild almost like you would use an...

No. Seems more appropriate to _fix_ in this project. In spel was only planning to _test_ that the symlink existed on a built AMI.

Hello again @nikitalita! If the issue is a change in pip/setuptools, as a workaround, does it help to pin those versions in your build pipeline? We haven't tried using pyproject.toml...

Oh I see, the file gets copied and referenced by another name, and ends up as part of the pyinstaller command. So we should probably figure out how pyinstaller is...

Hmm, reading through the [pyinstaller docs](https://pyinstaller.org/en/v5.3/spec-files.html), and they all seem to reference either the .py script, or a spec file. But I rather expect it works fine with projects that...

Let me come at it from another way, where are you seeing any evidence that the .py script is specific to `easy_install` and that it is supposed to be going...

Hello again @nikitalita, just following up here. Good and bad news... We recently had reason to update the build pipeline for the main project we needed gravitybee for in the...