Skip to content

Enable pip install --editable . on macOS#104

Open
cclauss wants to merge 1 commit into
bastibe:masterfrom
cclauss:pip-install-macos
Open

Enable pip install --editable . on macOS#104
cclauss wants to merge 1 commit into
bastibe:masterfrom
cclauss:pip-install-macos

Conversation

@cclauss

@cclauss cclauss commented Jun 20, 2026

Copy link
Copy Markdown
Contributor

Could you confirm that pip install --editable . works on macOS as well now?

With the proposed change:
% uv venv
% source .venv/bin/activate
% uv pip install --editable .
% python
Python 3.14.6 (main, Jun 11 2026, 03:55:33) [Clang 22.1.3 ] on darwin
Type "help", "copyright", "credits" or "license" for more information.

>>> import lua
... lg = lua.globals()
... print(f"{lg = }")
... print(f"{lg.string = }")
... print(f"{lg.string.lower = }")
... print(f"{lg.string.lower('Hello world!') = }")
... assert lg.string.lower('Hello world!') != 'Hello world!'
... assert lg.string.lower('Hello world!') == 'hello world!'
...

lg = <Lua table at 0x105eea5a0>
lg.string = <Lua table at 0xb390b8930>
lg.string.lower = <Lua function at 0x1059812a0>
lg.string.lower('Hello world!') = 'hello world!'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant