From e5a8c6bd618c251cee7018a2c92b16db70d97590 Mon Sep 17 00:00:00 2001 From: Yusur Princeps Date: Fri, 24 Apr 2026 09:51:44 +0200 Subject: [PATCH] 0.12.5 setuptools no more a dependency --- CHANGELOG.md | 4 ++++ README.md | 2 +- pyproject.toml | 1 - src/suou/__init__.py | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bee8a5c..2b08334 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.12.5 + ++ Optimized dependencies: `setuptools` now no more a dependency + ## 0.12.4 + Fix wrong imports in `sqlalchemy.quart` submodule diff --git a/README.md b/README.md index f83e756..447a9b7 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Good morning, my brother! Welcome **SUOU** (**S**IS **U**nified **O**bject **U**nderarmor), the Python library which speeds up and makes it pleasing to develop API, database schemas and stuff in Python. It provides utilities such as: -* SIQ ([specification](https://yusur.moe/protocols/siq.html) - [copy](https://suou.readthedocs.io/en/latest/iding.html)) +* SIQ ([specification](https://yusur.moe/protocols/siq.html) \[LINK BROKEN - WON'T FIX\] - [copy](https://suou.readthedocs.io/en/latest/iding.html)) * signing and generation of access tokens, on top of [ItsDangerous](https://github.com/pallets/itsdangerous) *not tested and not working* * helpers for use in Flask, [SQLAlchemy](https://suou.readthedocs.io/en/latest/sqlalchemy.html), and other popular frameworks * i forgor 💀 diff --git a/pyproject.toml b/pyproject.toml index 03b7166..5375510 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,6 @@ dependencies = [ "itsdangerous", "toml", "pydantic", - "setuptools>=78.0.0", "uvloop; os_name=='posix'" ] # - further devdependencies below - # diff --git a/src/suou/__init__.py b/src/suou/__init__.py index e18ef35..0d1dc2d 100644 --- a/src/suou/__init__.py +++ b/src/suou/__init__.py @@ -38,7 +38,7 @@ from .http import WantsContentType from .color import OKLabColor, chalk, WebColor, RGBColor, LinearRGBColor, XYZColor, OKLCHColor from .mat import Matrix -__version__ = "0.12.4" +__version__ = "0.12.5" __all__ = ( 'ConfigOptions', 'ConfigParserConfigSource', 'ConfigSource', 'ConfigValue',