Skip to content

Commit 5bd581e

Browse files
committed
fix: minor import errors
1 parent 492c142 commit 5bd581e

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

apple_books_mcp/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
import sys
44
try:
55
from server import serve
6-
except ImportError:
6+
except Exception:
77
from .server import serve
88

9-
__version__ = "0.1.1"
9+
__version__ = "0.1.3"
1010

1111

1212
@click.command()

apple_books_mcp/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
try:
22
from __init__ import main
3-
except ImportError:
3+
except Exception:
44
from .__init__ import main
55

66
main()

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[project]
22
name = "apple-books-mcp"
3-
version = "0.1.1"
3+
version = "0.1.3"
44
description = "Model Context Protocol (MCP) server for Apple Books"
55
readme = "README.md"
6-
requires-python = ">=3.10"
6+
requires-python = ">=3.13"
77
license = { text = "Apache 2.0" }
88
authors = [ { name="Vignesh Iyer", email="[email protected]" } ]
99
keywords = [ "apple-books", "mcp", "model-context-protocol", "apple-books-mcp", "llm", "productivity" ]
@@ -12,7 +12,7 @@ classifiers = [
1212
"Intended Audience :: Developers",
1313
"License :: OSI Approved :: Apache Software License",
1414
"Programming Language :: Python :: 3",
15-
"Programming Language :: Python :: 3.10",
15+
"Programming Language :: Python :: 3.13",
1616
]
1717
dependencies = [
1818
"click>=8.1.8",

uv.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)