From 9a80372fded4d6268ac0c95fd42cfceb5f7f1591 Mon Sep 17 00:00:00 2001 From: audrey Date: Wed, 31 Jan 2024 14:50:01 -0700 Subject: [PATCH] 2.2.1 fix issue where python 3.12 didn't work --- pyproject.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ec565c1..f8ebabc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nsdotpy" -version = "2.2.0" +version = "2.2.1" description = "A wrapper around httpx that abstracts away interacting with the HTML nationstates.net site. Focused on legality, correctness, and ease of use." authors = ["audrey "] license = "AGPL-3.0-or-later" @@ -8,17 +8,17 @@ readme = "README.md" repository = "https://github.com/sw33ze/NSDotPy" [tool.poetry.dependencies] -python = ">=3.10,<3.12" +python = ">=3.10" httpx = { extras = ["http2"], version = "^0.24.0" } -beautifulsoup4 = "^4.12.2" +beautifulsoup4 = "^4.12.3" keyboard = "^0.13.5" -lxml = "^4.9.2" +lxml = "^4.9.4" python-benedict = {extras = ["parse", "xml"], version = "^0.31.0"} [tool.poetry.group.dev.dependencies] -black = "^23.3.0" +black = "^23.12.1" pdoc = "^13.1.1" -pyinstaller = "^5.10.1" +pyinstaller = "^6.0.0" [build-system] requires = ["poetry-core"]