T-256
T-256
https://github.com/mitsuhiko/rye/pull/117 is Great, I suggest a new fallback layer to fix https://github.com/mitsuhiko/rye/issues/96: * When creating a new project, `tool.rye.python` is written in config file. The `requires-python` key is set to...
@con-f-use the `python` config name is where `hatch` uses it, so I thought it may reasonable to use it here too. `$ rye init` pyptoject.toml: ```toml [project] ... requires-python =...
Personally, I prefer using config name instead of separated file. The current situation is use `.python-version` file or use python 3.8.
> That case is covered by `.python-version`. So the extra key doesn't add usefulness, beyond the vauge "some people may find it prettier". In my mind, ".python-version" is to the...
As it says in description, it's just PoW script. The performant method of this method should implement in low level langs. But it's good idea to have python module for...
related https://github.com/astral-sh/uv/issues/411
Related https://github.com/astral-sh/uv/issues/1521
I'm using win10-1507, official cpython 3.12 32bit ``` C:\Users\ممد\Python312-32>python -m PyInstaller app.py 453 INFO: PyInstaller: 6.0.0 453 INFO: Python: 3.12.0 484 INFO: Platform: Windows-10-10.0.10240-SP0 500 INFO: wrote C:\Users\ممد\Python312-32\app.spec 500 INFO:...
with force `utf8_mode=1` to `app.spec`: ```py # -*- mode: python ; coding: utf-8 -*- a = Analysis( ['app.py'], pathex=[], binaries=[], datas=[], hiddenimports=[], hookspath=[], hooksconfig={}, runtime_hooks=[], excludes=[], noarchive=False, ) pyz =...
> Does that make a difference? ``` C:\Users\ممد\Python312-32>dist\app\app.exe appdata = 'C:\\Users\\???\\AppData\\Roaming' appdata len = 28 appdata encoded = b'C:\\Users\\???\\AppData\\Roaming' appdata encoded len = 28 sys.flags = sys.flags(debug=0, inspect=0, interactive=0, optimize=0,...