my1e5

Results 38 comments of my1e5
trafficstars

Thanks for your help. Yes, if I set a specific version of rye it is able to find the cached tool in `/opt/hostedtoolcache`. But it's only able to find the...

`setup-rye@v3` has made a big improvement. Now using this minimal config everything works nicely out the box. ```yaml - uses: eifinger/setup-rye@v3 id: setup-rye with: enable-cache: true ``` The `eifinger/setup-rye@v3` step...

Using ```yaml jobs: checks: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: eifinger/setup-rye@v3 id: setup-rye with: enable-cache: true - name: Install dependencies if: steps.setup-rye.outputs.cache-hit != 'true' run: | rye sync...

Interested to know if there are any further updates on this

I'm not sure what changed - but I noticed today that my coverage report is automatically changing its color scheme. ``` "mkdocs-material==9.5.39", "mkdocs-coverage==1.1.0", ```

Doing this exact same workflow (using `rye`) on Windows 10. ```bash ❯ python -m nuitka --version 2.4rc7 Commercial: None Python: 3.12.3 (main, Apr 15 2024, 17:48:16) [MSC v.1929 64 bit...

Thanks. Using the `factory` branch it now builds without errors. But I've run into another bug. Changing `foo.py` to use the `tsdownsample` library in a minimal way ```py # foo.py...

@BenConstable9 - I believe `[project.scripts]` which is part of the official `pyproject.toml` specification will cover the functionality you are looking for? See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#creating-executable-scripts Also [Using uv run as a task...