From a06e678a6921c1b650accaa02f457c285e525432 Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Sun, 22 Jun 2025 16:09:52 +0100 Subject: [PATCH] Switch from pkg_resources to importlib.resources --- CHANGELOG.md | 4 ++++ setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f04dcd1..b91f88d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change log +### 0.18.2 + +* Switch from using `pkg_resources` to `importlib.resources`: https://github.com/python-eel/Eel/pull/766 + ### 0.18.1 * Fix: Include `typing_extensions` in install requirements. diff --git a/setup.py b/setup.py index 4b5f3e5..000dfbe 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='Eel', - version='0.18.1', + version='0.18.2', author='Python Eel Organisation', author_email='python-eel@protonmail.com', url='https://github.com/python-eel/Eel',