Skip to content

Commit b474e39

Browse files
Fix/Invalid escape sequence, (#145)
* Project should support 3.11 (inclusive) * Re-fix invalid escape sequence in docstring
1 parent a18d51c commit b474e39

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

datareservoirio/appdirs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def user_data_dir(appname, roaming=False):
9696
Win XP (roaming): C:\\Documents and Settings\\<username>\\Local ...
9797
...Settings\\Application Data\\<AppName>
9898
Win 7 (not roaming): C:\\Users\\<username>\\AppData\\Local\\<AppName>
99-
Win 7 (roaming): C:\\Users\\<username>\\AppData\\\Roaming\\<AppName>
99+
Win 7 (roaming): C:\\Users\\<username>\\AppData\\Roaming\\<AppName>
100100
101101
For Unix, we follow the XDG spec and support $XDG_DATA_HOME.
102102
That means, by default '~/.local/share/<AppName>'.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dynamic = ["version"]
99
description = "DataReservoir.io Python API"
1010
readme = "README.rst"
1111
license = { file = "LICENSE" }
12-
requires-python = ">3.11"
12+
requires-python = ">=3.11, <4"
1313
classifiers = [
1414
"Development Status :: 5 - Production/Stable",
1515
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)