Skip to content

Commit

Permalink
remove --no-index
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron committed Nov 22, 2023
1 parent dfe7378 commit cc7e236
Showing 1 changed file with 0 additions and 100 deletions.
100 changes: 0 additions & 100 deletions .github/workflows/python-core-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,106 +154,6 @@ jobs:
name: wheels
path: dist/*.whl

# build-wheels-mac:
# runs-on: macos-latest
# defaults:
# run:
# working-directory: python/core

# steps:
# - uses: actions/checkout@v3
# with:
# submodules: "recursive"

# - name: Install Rust
# uses: dtolnay/rust-toolchain@stable

# - name: Set up Rust targets
# run: rustup target add aarch64-apple-darwin

# - uses: Swatinem/rust-cache@v2

# - name: Set up Python
# uses: actions/setup-python@v4
# with:
# python-version: "3.8"

# - name: Install Python dependencies
# run: |
# python -V
# pip install maturin

# # Build wheels for both x86 and aarch
# - name: Build
# run: |
# maturin build --release --strip -o wheels
# maturin build --release --target aarch64-apple-darwin --strip -o wheels

# - name: List wheels
# run: find ./wheels

# # Have to set path from root
# # https://github.com/actions/upload-artifact/issues/232#issuecomment-964235360
# - uses: actions/upload-artifact@v2
# with:
# path: python/core/wheels/*.whl

# build-wheel-windows:
# runs-on: windows-latest
# defaults:
# run:
# working-directory: python/core

# strategy:
# fail-fast: false
# matrix:
# include:
# - os: "windows-2019"
# arch: "auto64"
# triplet: "x64-windows"
# vcpkg_cache: "c:\\vcpkg\\installed"
# vcpkg_logs: "c:\\vcpkg\\buildtrees\\**\\*.log"

# steps:
# - uses: actions/checkout@v3
# with:
# submodules: "recursive"

# - name: Install Rust
# uses: dtolnay/rust-toolchain@stable

# - uses: Swatinem/rust-cache@v2

# - name: Setup Conda
# uses: conda-incubator/setup-miniconda@v2
# with:
# python-version: "3.8"
# miniforge-version: latest
# miniforge-variant: Mambaforge
# use-mamba: true

# - name: Install Python dependencies
# shell: bash
# run: |
# python -V
# python -m pip install maturin
# python -m pip install delvewheel

# - name: Build
# shell: bash
# run: |
# maturin build --release --strip -o wheels

# - name: List wheels
# shell: bash
# run: find ./wheels

# # Have to set path from root
# # https://github.com/actions/upload-artifact/issues/232#issuecomment-964235360
# - uses: actions/upload-artifact@v2
# with:
# path: python/core/wheels/*.whl

# build_sdist:
# name: Build source distribution
# runs-on: ubuntu-latest
Expand Down

0 comments on commit cc7e236

Please sign in to comment.