File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 13
13
3 . run [ ` build.sh ` ] ( ./build.sh ) on Intel Mac
14
14
4 . run [ ` build.sh ` ] ( ./build.sh ) inside docker on Intel Mac
15
15
16
- Then run ` twine upload --skip-existing target/wheels/* ` at all machines.
16
+ Then run
17
+ ```
18
+ twine upload --skip-existing target/wheels/*
19
+ ```
17
20
18
21
## Build Linux packages in Docker
19
22
@@ -24,9 +27,5 @@ docker build -t bgpkit-builder:latest .
24
27
25
28
Run ` docker run --rm -it bgpkit-builder:latest bash ` to open a shell in the container
26
29
``` bash
27
- # ###
28
- # TODO: copy the content of .pypirc to the root folder
29
- # ###
30
-
31
30
bash build.sh
32
31
```
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ RUN curl -sS https://bootstrap.pypa.io/get-pip.py -o get-pip.py && python3.12 ge
18
18
RUN curl -sS https://bootstrap.pypa.io/get-pip.py -o get-pip.py && python3.13 get-pip.py --break-system-packages && rm get-pip.py
19
19
20
20
# install maturin
21
- RUN python3.13 -m pip install maturin patchelf
21
+ RUN python3.13 -m pip install maturin patchelf twine
22
22
# install Rust
23
23
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
24
24
You can’t perform that action at this time.
0 commit comments