Skip to content

Commit 15d9b7c

Browse files
authored
Merge pull request #31 from HEnquist/next30
Next30
2 parents f2d7711 + 5380746 commit 15d9b7c

29 files changed

+1111
-948
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
matrix:
1010
python-version: ['3.8', '3.11']
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- name: Set up Python
14-
uses: actions/setup-python@v3
14+
uses: actions/setup-python@v5
1515
with:
1616
python-version: ${{ matrix.python-version }}
1717
- name: Install dependencies

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
*.pyc
2-
*.egg-info
2+
*.egg-info
3+
*.venv

camilladsp/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22
Python library for communicating with CamillaDSP.
33
"""
44

5-
from camilladsp.camilladsp import CamillaClient, CamillaError
5+
from camilladsp.camilladsp import CamillaClient
66
from camilladsp.datastructures import (
77
ProcessingState,
88
StopReason,
9+
CamillaError,
910
)
11+
12+
from camilladsp.versions import VERSION

0 commit comments

Comments
 (0)