Skip to content

Commit

Permalink
os sep
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-zehentleitner committed Oct 6, 2023
1 parent a4fcb2e commit 65ed03c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,18 @@ jobs:
- name: Set up Environment
run: |
echo "CIBW_SKIP=pp36-* pp37-* pp38-*" >> $GITHUB_ENV
echo "/home/runner/.cargo/bin" >> $GITHUB_PATH
python -m pip install --upgrade pip
- name: Check Rust Version
run: rustc --version
- name: Install Rust (Linux/macOS)
if: matrix.os != 'windows-2019'
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Install Rust (Windows)
if: matrix.os == 'windows-2019'
run: |
curl --proto '=https' --tlsv1.2 -sSf https://win.rustup.rs/x86_64 -o rustup-init.exe
./rustup-init.exe -y
echo "$HOME/.cargo/bin" >> $env:GITHUB_PATH
- name: Build wheels
uses: pypa/[email protected]
- uses: actions/upload-artifact@v3
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,8 @@ machine of [HETZNER CLOUD](https://www.hetzner.com) - [get 20 EUR starting credi
The module requires Python 3.7 or above, as it depends on Pythons latest asyncio features for asynchronous/concurrent
processing.

For the PyPy interpreter we offer packages only from Python version 3.9 and higher.

The current dependencies are listed
[here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/requirements.txt).

Expand Down

0 comments on commit 65ed03c

Please sign in to comment.