Skip to content

Commit

Permalink
Merge pull request #31 from HEnquist/next30
Browse files Browse the repository at this point in the history
Next30
  • Loading branch information
HEnquist authored Jan 11, 2025
2 parents f2d7711 + 5380746 commit 15d9b7c
Show file tree
Hide file tree
Showing 29 changed files with 1,111 additions and 948 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
matrix:
python-version: ['3.8', '3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
*.pyc
*.egg-info
*.egg-info
*.venv
5 changes: 4 additions & 1 deletion camilladsp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@
Python library for communicating with CamillaDSP.
"""

from camilladsp.camilladsp import CamillaClient, CamillaError
from camilladsp.camilladsp import CamillaClient
from camilladsp.datastructures import (
ProcessingState,
StopReason,
CamillaError,
)

from camilladsp.versions import VERSION
Loading

0 comments on commit 15d9b7c

Please sign in to comment.