From 4210bf6136bfe1eb28a3c5ca992de1178b181f34 Mon Sep 17 00:00:00 2001 From: Hood Chatham Date: Sun, 28 Jan 2024 10:18:23 -0800 Subject: [PATCH] Add py.typed marker (#96) --- micropip/py.typed | 0 pyproject.toml | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 micropip/py.typed diff --git a/micropip/py.typed b/micropip/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml index 463f537..3d0f7e4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "micropip" authors = [ { name="Pyodide developers"}, ] -description = "A lightweight Python package installer for the web " +description = "A lightweight Python package installer for the web" readme = "README.md" license = { file="LICENSE" } requires-python = ">=3.10" @@ -19,6 +19,7 @@ test = [ "pytest-httpserver", "pytest-pyodide", "pytest-cov", + "pytest<8.0.0", "build==0.7.0", ]