Skip to content

Commit 48bbd3e

Browse files
committed
Rename lc3 python package to lc3py, and bump version to 1.1.2
1 parent 7558637 commit 48bbd3e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
project('lc3', 'c',
16-
version: '1.1.0',
16+
version: '1.1.2',
1717
license: 'Apache-2.0',
1818
meson_version: '>= 0.48.0',
1919
default_options: ['buildtype=release', 'b_lto=true'])

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ requires = ["meson-python"]
33
build-backend = "mesonpy"
44

55
[project]
6-
name = "lc3"
7-
version = "0.0.1"
6+
name = "lc3py"
7+
version = "1.1.2"
88
license = { text="Apache-2.0" }
99
authors = [
1010
{ name="Antoine Soulier", email="[email protected]" },
@@ -13,7 +13,7 @@ description = "LC3 Codec library wrapper"
1313
requires-python = ">=3.10"
1414

1515
[project.optional-dependencies]
16-
dev = ["pytest"]
16+
dev = ["pytest"]
1717

1818
[project.urls]
1919
Homepage = "https://github.com/google/liblc3"

python/lc3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def __init__(
7878

7979
if libpath is None:
8080
mesonpy_lib = glob.glob(
81-
os.path.join(os.path.dirname(__file__), ".lc3.mesonpy.libs", "*lc3*")
81+
os.path.join(os.path.dirname(__file__), ".lc3py.mesonpy.libs", "*lc3*")
8282
)
8383

8484
if mesonpy_lib:

0 commit comments

Comments
 (0)