Skip to content

Commit

Permalink
Removed compiled builds (#97)
Browse files Browse the repository at this point in the history
The libraries all need to be compiled with the same compiler and same version of pybind11.
Pypi and pip do not have a mechanism to manage this so it would be a nightmare.
I would like to support compiled builds but I can't figure out a way to ensure they are all built by the same compiler.
  • Loading branch information
gentlegiantJGC authored Nov 29, 2024
1 parent 38f4394 commit cc38354
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.11', '3.12']
os: [macos-latest, windows-latest]
python-version: ['3.11']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -29,5 +29,5 @@ jobs:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.AMULET_NBT_PYPI_PASSWORD }}
run: |
python -m build
python -m build --sdist
twine upload dist/* --skip-existing

0 comments on commit cc38354

Please sign in to comment.