From 5f5e30a4d84cb53231af9cbd7f2b3c23b4f57f2a Mon Sep 17 00:00:00 2001 From: Marcus Risanger <69350948+MarcusRisanger@users.noreply.github.com> Date: Fri, 29 Aug 2025 13:05:21 +0200 Subject: [PATCH 1/2] Project should support 3.11 (inclusive) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index fcb06732..4c616762 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ dynamic = ["version"] description = "DataReservoir.io Python API" readme = "README.rst" license = { file = "LICENSE" } -requires-python = ">3.11" +requires-python = ">=3.11, <4" classifiers = [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: MIT License", From 92f6602b6c8ebe77a0122a61f7134852da60f635 Mon Sep 17 00:00:00 2001 From: Marcus Risanger <69350948+MarcusRisanger@users.noreply.github.com> Date: Fri, 29 Aug 2025 13:06:04 +0200 Subject: [PATCH 2/2] Re-fix invalid escape sequence in docstring --- datareservoirio/appdirs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datareservoirio/appdirs.py b/datareservoirio/appdirs.py index ac03aae6..648ea195 100644 --- a/datareservoirio/appdirs.py +++ b/datareservoirio/appdirs.py @@ -96,7 +96,7 @@ def user_data_dir(appname, roaming=False): Win XP (roaming): C:\\Documents and Settings\\\\Local ... ...Settings\\Application Data\\ Win 7 (not roaming): C:\\Users\\\\AppData\\Local\\ - Win 7 (roaming): C:\\Users\\\\AppData\\\Roaming\\ + Win 7 (roaming): C:\\Users\\\\AppData\\Roaming\\ For Unix, we follow the XDG spec and support $XDG_DATA_HOME. That means, by default '~/.local/share/'.