-
Notifications
You must be signed in to change notification settings - Fork 70
Fix 3.13 tests #276
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix 3.13 tests #276
Conversation
|
Checks are failing. Looks like the format of diff --git a/poetry.lock b/poetry.lock
index 5dacf26..dc355d9 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -1,10 +1,16 @@
+# This file is automatically @generated by Poetry 2.1.2 and should not be changed by hand.
+
[[package]]
name = "feedparser"
version = "6.0.5"
description = "Universal feed parser, handles RSS 0.9x, RSS 1.0, RSS 2.0, CDF, Atom 0.3, and Atom 1.0 feeds"
-category = "main"
optional = false
python-versions = ">=3.6"
+groups = ["main"]
+files = [
+ {file = "feedparser-6.0.5-py3-none-any.whl", hash = "sha256:f4dfcc94bb85fd44bb27089f696cdd225d6c10b3ab25a9ddaa8257b692b6a224"},
+ {file = "feedparser-6.0.5.tar.gz", hash = "sha256:cae320004d904a12e33b1b10bd63766bc2823eec94e03b802fbb228d820838d9"},
+]
[package.dependencies]
sgmllib3k = "*"
@@ -13,43 +19,37 @@ sgmllib3k = "*"
name = "html2text"
version = "2020.1.16"
description = "Turn HTML into equivalent Markdown-structured text."
-category = "main"
optional = false
python-versions = ">=3.5"
+groups = ["main"]
+files = [
+ {file = "html2text-2020.1.16-py3-none-any.whl", hash = "sha256:c7c629882da0cf377d66f073329ccf34a12ed2adf0169b9285ae4e63ef54c82b"},
+ {file = "html2text-2020.1.16.tar.gz", hash = "sha256:e296318e16b059ddb97f7a8a1d6a5c1d7af4544049a01e261731d2d5cc277bbb"},
+]
[[package]]
name = "sgmllib3k"
version = "1.0.0"
description = "Py3k port of sgmllib."
-category = "main"
optional = false
python-versions = "*"
+groups = ["main"]
+files = [
+ {file = "sgmllib3k-1.0.0.tar.gz", hash = "sha256:7868fb1c8bfa764c1ac563d3cf369c381d1325d36124933a726f29fcdaa812e9"},
+]
[[package]]
name = "update-copyright"
version = "0.6.2"
description = "Automatically update copyright blurbs in versioned source."
-category = "dev"
optional = false
python-versions = "*"
-
-[metadata]
-lock-version = "1.1"
-python-versions = "^3.6"
-content-hash = "90cb7e86a04cf6708485bd4c8c9c11c369898e17ffdb580897ca42ac4bfcc64e"
-
-[metadata.files]
-feedparser = [
- {file = "feedparser-6.0.5-py3-none-any.whl", hash = "sha256:f4dfcc94bb85fd44bb27089f696cdd225d6c10b3ab25a9ddaa8257b692b6a224"},
- {file = "feedparser-6.0.5.tar.gz", hash = "sha256:cae320004d904a12e33b1b10bd63766bc2823eec94e03b802fbb228d820838d9"},
-]
-html2text = [
- {file = "html2text-2020.1.16-py3-none-any.whl", hash = "sha256:c7c629882da0cf377d66f073329ccf34a12ed2adf0169b9285ae4e63ef54c82b"},
- {file = "html2text-2020.1.16.tar.gz", hash = "sha256:e296318e16b059ddb97f7a8a1d6a5c1d7af4544049a01e261731d2d5cc277bbb"},
-]
-sgmllib3k = [
- {file = "sgmllib3k-1.0.0.tar.gz", hash = "sha256:7868fb1c8bfa764c1ac563d3cf369c381d1325d36124933a726f29fcdaa812e9"},
-]
-update-copyright = [
+groups = ["dev"]
+files = [
{file = "update-copyright-0.6.2.tar.gz", hash = "sha256:ffccb6eb762afcbd7e91d0e1901a3af7fba0d90ede4da21ac45e18d6d66bcb9f"},
]
+
+[metadata]
+lock-version = "2.1"
+python-versions = "^3.6"
+content-hash = "90cb7e86a04cf6708485bd4c8c9c11c369898e17ffdb580897ca42ac4bfcc64e"That ↑ is the result of running |
|
feedparser 6.0.5 doesn't support 3.13, and technically 6.0.11 also doesn't fully support it (kurtmckee/feedparser#481). I am unable to install poetry, could you bump feedparser in pyproject.toml and commit it? |
As suggested by `poetry lock`:
The "poetry.dev-dependencies" section is deprecated and will be removed in a future version. Use "poetry.group.dev.dependencies" instead.
Co-authored-by: Brand Huntsman <au@qzx.com>
amiryal
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you have a quick look at the diff and merge it?
|
For anyone who’d like to follow my footsteps: nix profile install nixpkgs#uv
nix run nixpkgs#python313 -- --version
uv venv -p $(nix eval --raw nixpkgs#python313) --seed build/venv3.13
source build/venv3.13/bin/activate
pip install poetry
poetry lock
poetry update feedparserAnd for completeness: |
|
Thank you for fixing this! |
No description provided.