Skip to content

Commit

Permalink
Rename lc3 python package to lc3py, and bump version to 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
asoulier committed Jan 31, 2025
1 parent 7558637 commit 48bbd3e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

project('lc3', 'c',
version: '1.1.0',
version: '1.1.2',
license: 'Apache-2.0',
meson_version: '>= 0.48.0',
default_options: ['buildtype=release', 'b_lto=true'])
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ requires = ["meson-python"]
build-backend = "mesonpy"

[project]
name = "lc3"
version = "0.0.1"
name = "lc3py"
version = "1.1.2"
license = { text="Apache-2.0" }
authors = [
{ name="Antoine Soulier", email="asoulier@google.com" },
Expand All @@ -13,7 +13,7 @@ description = "LC3 Codec library wrapper"
requires-python = ">=3.10"

[project.optional-dependencies]
dev = ["pytest"]
dev = ["pytest"]

[project.urls]
Homepage = "https://github.com/google/liblc3"
Expand Down
2 changes: 1 addition & 1 deletion python/lc3.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __init__(

if libpath is None:
mesonpy_lib = glob.glob(
os.path.join(os.path.dirname(__file__), ".lc3.mesonpy.libs", "*lc3*")
os.path.join(os.path.dirname(__file__), ".lc3py.mesonpy.libs", "*lc3*")
)

if mesonpy_lib:
Expand Down

0 comments on commit 48bbd3e

Please sign in to comment.