From 955d95a2e4ea795ae7befd0ce17839e149bb7da3 Mon Sep 17 00:00:00 2001 From: Florian Rau Date: Mon, 20 Jan 2025 16:14:15 +0000 Subject: [PATCH] fix wheel distribution --- CHANGELOG.md | 5 +++++ iblqt/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 551ec53..84f187b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.2] - 2025-01-20 + +### Fixed +- fix wheel distribution + ## [0.4.1] - 2025-01-20 ### Fixed diff --git a/iblqt/__init__.py b/iblqt/__init__.py index 8d32b4f..e7144ea 100644 --- a/iblqt/__init__.py +++ b/iblqt/__init__.py @@ -1,3 +1,3 @@ """A collection of extensions to the Qt framework.""" -__version__ = '0.4.1' +__version__ = '0.4.2' diff --git a/pyproject.toml b/pyproject.toml index 3621222..ccaef2c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ Changelog = "https://github.com/int-brain-lab/iblqt/blob/main/CHANGELOG.md" distribution = true [tool.pdm.build] -package-dir = "iblqt" +includes = [ "iblqt/*" ] source-includes = [ "iblqt/", "tests/", "resources/", "docs/source" ] [tool.pdm.version]