Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove BPS patcher references #61

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
Loading