Skip to content

Commit

Permalink
Merge pull request #66 from ReadAlongs/dev.ej/include-py39-wheels
Browse files Browse the repository at this point in the history
fix: generate py39 wheels too
  • Loading branch information
dhdaines authored Aug 19, 2024
2 parents 60dba0c + 906ac27 commit 693a4cb
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install
run: |
sudo apt-get install sox ninja-build
Expand All @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install
run: |
pip3 install -r requirements.dev.txt
Expand All @@ -37,7 +37,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install
run: |
pip3 install -r requirements.dev.txt
Expand All @@ -48,20 +48,21 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install
run: |
pip3 install -r requirements.dev.txt
pip3 install .
pip install -r requirements.dev.txt
pip install .
- name: Run tests
run: python3 -m pytest
run: python -m pytest
nodetest:
runs-on: ubuntu-latest
steps:
- name: Install Build Dependencies
uses: mymindstorm/setup-emsdk@v12
uses: mymindstorm/setup-emsdk@v14
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build
run: |
emcmake cmake -S . -B jsbuild
Expand Down
1 change: 0 additions & 1 deletion js/linker_options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@
-sSTRICT=1
-sSTRICT_JS=0
-sSUPPORT_LONGJMP=0
--memory-init-file=0
1 change: 1 addition & 0 deletions js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"homepage": "https://github.com/ReadAlongs/SoundSwallower#readme",
"devDependencies": {
"@types/node": "^18.0.3",
"@types/markdown-it": "^14.1.1",
"chai": "^4.3.7",
"jsdoc": "^3.6.10",
"mocha": "^10.0.0",
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ soundswallower = "soundswallower.cli:main"
# Build a reduced selection of binaries as there are tons of them
build = [
"cp38-*",
"cp39-*",
"cp310-*",
"cp311-*",
"cp312-*",
Expand Down

0 comments on commit 693a4cb

Please sign in to comment.