From 33c5eb5989314b378615a046c50f6b9aaeea11b3 Mon Sep 17 00:00:00 2001 From: zacharyburnett Date: Mon, 4 Nov 2024 09:47:41 -0500 Subject: [PATCH] update wheel building instructions --- README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c757fc7d..aa17c583 100644 --- a/README.md +++ b/README.md @@ -205,23 +205,22 @@ even 2.0. Python 3 is required. ### Creating wheels -First, make a virtual environment and install `cmake_build_extension` and `wheel` -into it: +First, make a virtual environment and install `build` into it: ``` python3 -m venv venv source venv/bin/activate -pip install cmake_build_extension wheel +pip install build ``` Then build the wheel: ``` -python setup.py bdist_wheel +python -m build ``` The resulting wheel will be in the `dist` directory. -> If OpenSSL is in a non-standard location make sure to set `OPENSSL_ROOT_DIR` -> when calling `setup.py`, see above for more information. +> If OpenSSL is in a non-standard location make sure to set `OPENSSL_ROOT_DIR`; +> see above for more information. ## Other S2 implementations