From 2c145ef9ff03960da35ba6d6b1701ef1f25c11d9 Mon Sep 17 00:00:00 2001
From: Matthieu Proboeuf <matthieu.proboeuf@worldline.com>
Date: Wed, 9 Apr 2025 08:50:54 +0200
Subject: [PATCH] fix(test): use wheel version 0.45.1

---
 .gitlab-ci.yml | 2 +-
 CHANGELOG.md   | 5 +++++
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 7957d96..fe88f60 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -94,7 +94,7 @@ test:
     - apt install -y python3.11 python3.11-dev git
     - curl -sS https://bootstrap.pypa.io/get-pip.py | python3.11
     - python3.11 -m pip install -U pip
-    - python3.11 -m pip install -U setuptools==65 wheel
+    - python3.11 -m pip install -U setuptools==65 wheel==0.45.1
     - python3.11 -m pip install -U -r requirements.txt
     - python3.11 -m pip install -U -r requirements/testing.txt
     - python3.11 -m pip install -e .
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d19b98e..4274e5f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,11 @@
 The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/).
 
 ## [Unreleased]
+### Added
+- IGNGPF-4323 : handle complex styles
+
+### Fixed
+- Use fixed wheel dependency version 0.45.1 due to breaking change since 0.46.0 https://wheel.readthedocs.io/en/stable/news.html
 
 ## [2.18.0] - 2025-03-06
 ### Changed
-- 
GitLab