Skip to content

Commit

Permalink
Remove BPS patcher references
Browse files Browse the repository at this point in the history
  • Loading branch information
Miepee committed Sep 12, 2023
1 parent 41f98cf commit 022d80a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 277 deletions.
23 changes: 9 additions & 14 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,6 @@ jobs:

- name: build wheel
run: .venv/bin/python -m build --wheel

- name: multilinux stuff
run: |
.venv/bin/python -m auditwheel repair --plat manylinux2014_x86_64 dist/*-linux_x86_64.whl -w dist
rm dist/*-linux_x86_64.whl

- name: Store the packages
uses: actions/upload-artifact@v2
Expand All @@ -112,15 +107,15 @@ jobs:
fail-fast: false
matrix:
os:
- {name: 'macOS', image: 'macos-latest', wheel: 'macosx_*'}
- {name: 'Windows', image: 'windows-latest', wheel: 'win_amd64'}
- {name: 'Linux', image: 'ubuntu-latest', wheel: 'manylinux_2_17_x86_64.manylinux2014_x86_64'}
- {name: 'macOS', image: 'macos-latest'}
- {name: 'Windows', image: 'windows-latest'}
- {name: 'Linux', image: 'ubuntu-latest'}
python:
- {version: '3.7', wheel: 'cp37-cp37m'}
- {version: '3.8', wheel: 'cp38-cp38'}
- {version: '3.9', wheel: 'cp39-cp39'}
- {version: '3.10', wheel: 'cp310-cp310'}
- {version: '3.11', wheel: 'cp311-cp311'}
- {version: '3.7'}
- {version: '3.8'}
- {version: '3.9'}
- {version: '3.10'}
- {version: '3.11'}

steps:
- name: Checkout
Expand All @@ -141,7 +136,7 @@ jobs:
run: python -m pip install --upgrade pip pytest

- name: install built wheel
run: python -m pip install dist/*-${{ matrix.python.wheel }}-${{ matrix.os.wheel }}.whl
run: python -m pip install dist/*-py3-none-any.whl
shell: bash

- name: test
Expand Down
3 changes: 0 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
global-include *.pyx
global-include *.pxd
global-exclude *.c
prune venv
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
Cython
websocket-client
websocket-client
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from setuptools import setup
from Cython.Build import cythonize

setup(ext_modules=cythonize("src/SuperDuperMetroid/BPSPatch/BPS_Patcher.pyx", annotate=True))
setup()
256 changes: 0 additions & 256 deletions src/SuperDuperMetroid/BPSPatch/BPS_Patcher.pyx

This file was deleted.

Empty file.

0 comments on commit 022d80a

Please sign in to comment.