Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jstzwj committed Jan 4, 2025
1 parent fbc6b31 commit bc68b45
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@ jobs:
runs-on: ${{ matrix.os }}
env:
CIBW_BEFORE_BUILD: pip install setuptools==58.0.1&&pip install Cython==0.29.37&&pip install -U wheel numpy
CIBW_BEFORE_TEST: apk add rust&&apk add cargo&&pip install Cython==0.29.37&&pip install -U maturin
CIBW_BEFORE_TEST: apk add rustup&&rustup update&&pip install Cython==0.29.37&&pip install -U maturin
CIBW_TEST_REQUIRES: pytest pandas polars
CIBW_TEST_COMMAND: >
cd .. &&
pytest -k "not RSI and not threading" {project}/tests
CIBW_TEST_SKIP: "*win32 cp36* cp37* cp38* cp39*"
CIBW_SKIP: "pp* cp*-manylinux*"
CIBW_SKIP: "pp* cp36* cp37* cp38* cp39* cp*-manylinux*"
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel}
- name: Set wheel name
run: |
echo "WHEEL_NAME=ta_lib-${{env.TALIB_PY_VER}}-macosx_arm64.whl" >> $GITHUB_ENV
echo "WHEEL_NAME=ta_lib-${{env.TALIB_PY_VER}}-macosx_arm64" >> $GITHUB_ENV
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand Down
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
# talib-prebuilt
Build [TA-Lib](https://github.com/ta-lib/ta-lib-python) wheels for Python using GitHub Actions.

The wheels can be downloaded from the [Releases](https://github.com/cgohlke/talib-build/releases) page.
Supported platforms:
- Windows 64-bit
- Windows 32-bit
- macOS x86_64
- macOS arm64
- Linux 64-bit

Supported Python versions:
- 3.6
- 3.7
- 3.8
- 3.9
- 3.10
- 3.11
- 3.12
- 3.13

The wheels can be downloaded from the [Releases](https://github.com/quantmew/talib-prebuilt/releases) page.

Install a wheel on the command line, for example for Python 3.13 64-bit:

Expand Down

0 comments on commit bc68b45

Please sign in to comment.