From 0bd24b286a560d0d54e686abdab43b6f09084075 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 6 Feb 2025 08:11:27 +0100 Subject: [PATCH] Release version 0.1.5 --- Makefile | 1 + pyproject.toml | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dd0da23..1ee8c63 100644 --- a/Makefile +++ b/Makefile @@ -154,6 +154,7 @@ install-test: install-dev-deps dev list-packaged: build tar -tf $(shell ls -1 dist/*.tar.gz | sort -V | tail -n 1) + unzip -l dist/python_newtype-0.1.*-*.whl # Version verification check-version: diff --git a/pyproject.toml b/pyproject.toml index 1a62c65..3300418 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry_dynamic_versioning.backend" [tool.poetry] name = "python-newtype" -version = "0.1.4" +version = "0.1.5" homepage = "https://github.com/jymchng/python-newtype-dev" repository = "https://github.com/jymchng/python-newtype-dev" license = "MIT" @@ -16,6 +16,9 @@ readme = "README.md" packages = [{ include = "newtype" }] include = [ { path = "newtype/*.so" }, + { path = "newtype/*.pyd" }, + { path = "newtype/extensions/*.so" }, + { path = "newtype/extensions/*.pyd" }, { path = "newtype/*" }, { path = "newtype/extensions/**" }, # need to include this for the packager to include it in the distribution ]