diff --git a/bindings/nostr-sdk-ffi/justfile b/bindings/nostr-sdk-ffi/justfile index 175cace23..ac5b9c151 100755 --- a/bindings/nostr-sdk-ffi/justfile +++ b/bindings/nostr-sdk-ffi/justfile @@ -132,7 +132,7 @@ python: cargo build --release cargo run -p uniffi-bindgen generate --library ../../target/release/libnostr_sdk_ffi.so --language python --no-format -o python/src/nostr-sdk/ cp ../../target/release/libnostr_sdk_ffi.so python/src/nostr-sdk/ - cd python && python setup.py --verbose bdist_wheel + cd python && python setup.py bdist_wheel pip install ./python/dist/nostr_sdk*.whl --force-reinstall [macos] @@ -142,7 +142,7 @@ python: cargo build --release cargo run -p uniffi-bindgen generate --library ../../target/release/libnostr_sdk_ffi.dylib --language python --no-format -o python/src/nostr-sdk/ cp ../../target/release/libnostr_sdk_ffi.dylib python/src/nostr-sdk/ - cd python && python setup.py --verbose bdist_wheel + cd python && python setup.py bdist_wheel pip install ./python/dist/nostr_sdk*.whl --force-reinstall [windows] @@ -152,5 +152,5 @@ python: cargo run -p uniffi-bindgen generate --library ..\..\target\release\nostr_sdk_ffi.dll --language python --no-format -o python\src\nostr-sdk\ copy ..\..\target\release\nostr_sdk_ffi.dll python\src\nostr-sdk del /F /Q python\dist\* 2>nul || exit /b 0 - cd python && python setup.py --verbose bdist_wheel + cd python && python setup.py bdist_wheel FOR %%i in (.\python\dist\*.whl) DO pip install %i --force-reinstall diff --git a/bindings/nostr-sdk-ffi/python/pyproject.toml b/bindings/nostr-sdk-ffi/python/pyproject.toml index 133d9fc92..b1e1a4650 100644 --- a/bindings/nostr-sdk-ffi/python/pyproject.toml +++ b/bindings/nostr-sdk-ffi/python/pyproject.toml @@ -1,7 +1,2 @@ [build-system] -requires = ["setuptools", "wheel"] - -[tool.pytest.ini_options] -pythonpath = [ - "." -] \ No newline at end of file +requires = ["setuptools"] diff --git a/bindings/nostr-sdk-ffi/python/requirements.txt b/bindings/nostr-sdk-ffi/python/requirements.txt index bd0cfaa7c..a6f647573 100644 --- a/bindings/nostr-sdk-ffi/python/requirements.txt +++ b/bindings/nostr-sdk-ffi/python/requirements.txt @@ -1,4 +1 @@ -semantic-version==2.9.0 -typing_extensions==4.0.1 -setuptools==70.0.0 -wheel==0.38.4 +setuptools==75.3.0