Skip to content

Commit

Permalink
was it setup.py afterall
Browse files Browse the repository at this point in the history
  • Loading branch information
lewiswolf committed Aug 12, 2024
1 parent 736f935 commit cbf65f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# os: [macos-latest, ubuntu-latest, windows-latest]
os: [macos-latest, ubuntu-latest]
os: [macos-latest, ubuntu-latest, windows-latest]
# os: [macos-latest, ubuntu-latest]
python: ["3.11", "3.12"]

steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: lukka/get-cmake@latest
- uses: actions/setup-python@main
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- uses: actions/cache@v4
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# core
import codecs
import os
from setuptools import find_namespace_packages
from setuptools import find_packages
from skbuild import setup


Expand Down Expand Up @@ -65,7 +65,7 @@
keywords=['kac_drumset'],
long_description_content_type='text/markdown',
name=name,
packages=find_namespace_packages(),
packages=find_packages(),
package_data={'kac_drumset': ['py.typed']},
version=version,
)

0 comments on commit cbf65f4

Please sign in to comment.