kopia lustrzana https://github.com/cirospaciari/socketify.py
update reame and flows
rodzic
bf5325d0f2
commit
321ef79711
|
@ -30,7 +30,7 @@ jobs:
|
||||||
git add libsocketify_windows_amd64.dll
|
git add libsocketify_windows_amd64.dll
|
||||||
git config --global user.email "ciro.spaciari@gmail.com"
|
git config --global user.email "ciro.spaciari@gmail.com"
|
||||||
git config --global user.name "Ciro Spaciari"
|
git config --global user.name "Ciro Spaciari"
|
||||||
git commit -a -m "[GitHub Actions] Updated windows-amd64 binaries"
|
git commit -m "[GitHub Actions] Updated windows-amd64 binaries"
|
||||||
git push "https://cirospaciari:${{ secrets.BUILDTOKEN }}@github.com/cirospaciari/socketify.py.git"
|
git push "https://cirospaciari:${{ secrets.BUILDTOKEN }}@github.com/cirospaciari/socketify.py.git"
|
||||||
|
|
||||||
build-macos:
|
build-macos:
|
||||||
|
@ -47,8 +47,9 @@ jobs:
|
||||||
git add libsocketify_darwin_arm64.so
|
git add libsocketify_darwin_arm64.so
|
||||||
git config --global user.email "ciro.spaciari@gmail.com"
|
git config --global user.email "ciro.spaciari@gmail.com"
|
||||||
git config --global user.name "Ciro Spaciari"
|
git config --global user.name "Ciro Spaciari"
|
||||||
git commit -a -m "[GitHub Actions] Updated darwin-amd64 + darwin-arm64 binaries" || true
|
git commit -m "[GitHub Actions] Updated darwin-amd64 + darwin-arm64 binaries" || true
|
||||||
git push "https://cirospaciari:${{ secrets.BUILDTOKEN }}@github.com/cirospaciari/socketify.py.git"
|
git push "https://cirospaciari:${{ secrets.BUILDTOKEN }}@github.com/cirospaciari/socketify.py.git"
|
||||||
|
|
||||||
build-linux:
|
build-linux:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: Build on linux-amd64
|
name: Build on linux-amd64
|
||||||
|
@ -65,5 +66,5 @@ jobs:
|
||||||
git add libsocketify_linux_amd64.so
|
git add libsocketify_linux_amd64.so
|
||||||
git config --global user.email "ciro.spaciari@gmail.com"
|
git config --global user.email "ciro.spaciari@gmail.com"
|
||||||
git config --global user.name "Ciro Spaciari"
|
git config --global user.name "Ciro Spaciari"
|
||||||
git commit -a -m "[GitHub Actions] Updated linux-amd64 binaries" || true
|
git commit -m "[GitHub Actions] Updated linux-amd64 binaries" || true
|
||||||
git push "https://cirospaciari:${{ secrets.BUILDTOKEN }}@github.com/cirospaciari/socketify.py.git"
|
git push "https://cirospaciari:${{ secrets.BUILDTOKEN }}@github.com/cirospaciari/socketify.py.git"
|
|
@ -19,9 +19,9 @@ app.run()
|
||||||
### pip install
|
### pip install
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pip install git+https://github.com/cirospaciari/socketify.py.git --global-option=build_ext
|
pip install git+https://github.com/cirospaciari/socketify.py.git
|
||||||
#or specify PyPy3
|
#or specify PyPy3
|
||||||
pypy3 -m pip install git+https://github.com/cirospaciari/socketify.py.git --global-option=build_ext
|
pypy3 -m pip install git+https://github.com/cirospaciari/socketify.py.git
|
||||||
#or in editable mode
|
#or in editable mode
|
||||||
pypy3 -m pip install -e git+https://github.com/cirospaciari/socketify.py.git@main#egg=socketify
|
pypy3 -m pip install -e git+https://github.com/cirospaciari/socketify.py.git@main#egg=socketify
|
||||||
```
|
```
|
||||||
|
@ -30,7 +30,7 @@ pypy3 -m pip install -e git+https://github.com/cirospaciari/socketify.py.git@mai
|
||||||
|
|
||||||
requirements.txt file content
|
requirements.txt file content
|
||||||
```text
|
```text
|
||||||
git+https://github.com/cirospaciari/socketify.py.git@main#socketify --global-option="build_ext"
|
git+https://github.com/cirospaciari/socketify.py.git@main#socketify
|
||||||
```
|
```
|
||||||
|
|
||||||
install command
|
install command
|
||||||
|
@ -57,7 +57,7 @@ git clone https://github.com/cirospaciari/socketify.py.git
|
||||||
cd ./socketify.py
|
cd ./socketify.py
|
||||||
git submodule update --init --recursive --remote
|
git submodule update --init --recursive --remote
|
||||||
#install local pip
|
#install local pip
|
||||||
pypy3 -m pip install . --global-option=build_ext #--no-cache-dir is an option
|
pypy3 -m pip install .
|
||||||
#install in editable mode
|
#install in editable mode
|
||||||
pypy3 -m pip install -e .
|
pypy3 -m pip install -e .
|
||||||
#if you want to remove
|
#if you want to remove
|
||||||
|
|
Ładowanie…
Reference in New Issue