Update dependencies

This commit is contained in:
Giacomo Leidi 2024-02-28 23:45:20 +01:00
parent e5100d499e
commit 647925acd3
No known key found for this signature in database
GPG Key ID: AED41CC193B701E2
3 changed files with 40 additions and 34 deletions

View File

@ -10,7 +10,7 @@
(name 'guix)
(url "https://git.savannah.gnu.org/git/guix.git")
(commit
"96895a65b41cc273e53cfb4665400671d83a046c")
"23283c50e96d7812a42b1272329fa3ba05a5a6e6")
(introduction
(make-channel-introduction
"afb9f2752315f131e4ddd44eba02eed403365085"

View File

@ -4,7 +4,8 @@
#:use-module (guix gexp)
#:use-module (guix packages)
#:use-module (guix utils)
#:use-module (gnu packages markup) ;; for python-markdownify
#:use-module (gnu packages markup) ;; for python-markdownify
#:use-module (gnu packages python-xyz) ;; for python-apscheduler
#:use-module (mobilizon-reshare package)
#:use-module (mobilizon-reshare dependencies)
#:use-module (ice-9 rdelim)

69
poetry.lock generated
View File

@ -30,15 +30,15 @@ typing_extensions = ">=3.7.2"
[[package]]
name = "alabaster"
version = "0.7.13"
description = "A configurable sidebar-enabled Sphinx theme"
version = "0.7.16"
description = "A light, configurable Sphinx theme"
category = "dev"
optional = false
python-versions = ">=3.6"
python-versions = ">=3.9"
[[package]]
name = "anyio"
version = "4.2.0"
version = "4.3.0"
description = "High level compatibility layer for multiple asynchronous event loop implementations"
category = "main"
optional = false
@ -171,7 +171,7 @@ lxml = ["lxml"]
[[package]]
name = "certifi"
version = "2023.11.17"
version = "2024.2.2"
description = "Python package for providing Mozilla's CA Bundle."
category = "main"
optional = false
@ -206,7 +206,7 @@ python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7
[[package]]
name = "coverage"
version = "7.4.0"
version = "7.4.3"
description = "Code coverage measurement for Python"
category = "dev"
optional = false
@ -414,7 +414,7 @@ python-versions = ">=3.6.2,<4.0"
[[package]]
name = "jinja2"
version = "3.1.2"
version = "3.1.3"
description = "A very fast and expressive template engine."
category = "main"
optional = false
@ -428,11 +428,11 @@ i18n = ["Babel (>=2.7)"]
[[package]]
name = "lxml"
version = "5.0.1"
version = "5.1.0"
description = "Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API."
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, != 3.4.*"
python-versions = ">=3.6"
[package.extras]
cssselect = ["cssselect (>=0.7)"]
@ -454,7 +454,7 @@ six = ">=1.15,<2"
[[package]]
name = "markupsafe"
version = "2.1.3"
version = "2.1.5"
description = "Safely add untrusted strings to HTML/XML markup."
category = "main"
optional = false
@ -483,7 +483,7 @@ python-versions = ">=3.7"
[[package]]
name = "pluggy"
version = "1.3.0"
version = "1.4.0"
description = "plugin and hook calling mechanisms for python"
category = "dev"
optional = false
@ -514,7 +514,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[[package]]
name = "pydantic"
version = "1.10.13"
version = "1.10.14"
description = "Data validation and settings management using python type hints"
category = "main"
optional = false
@ -621,7 +621,7 @@ six = ">=1.5"
[[package]]
name = "python-slugify"
version = "8.0.1"
version = "8.0.4"
description = "A Python slugify application that also handles Unicode"
category = "dev"
optional = false
@ -636,7 +636,7 @@ unidecode = ["Unidecode (>=1.1.1)"]
[[package]]
name = "pytz"
version = "2023.3.post1"
version = "2024.1"
description = "World timezone definitions, modern and historical"
category = "main"
optional = false
@ -702,7 +702,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
[[package]]
name = "sniffio"
version = "1.3.0"
version = "1.3.1"
description = "Sniff out which async library your code is running under"
category = "main"
optional = false
@ -790,38 +790,41 @@ dev = ["black (==22.12.0)"]
[[package]]
name = "sphinxcontrib-applehelp"
version = "1.0.4"
version = "1.0.8"
description = "sphinxcontrib-applehelp is a Sphinx extension which outputs Apple help books"
category = "dev"
optional = false
python-versions = ">=3.8"
python-versions = ">=3.9"
[package.extras]
lint = ["flake8", "mypy", "docutils-stubs"]
standalone = ["Sphinx (>=5)"]
test = ["pytest"]
[[package]]
name = "sphinxcontrib-devhelp"
version = "1.0.2"
description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document."
version = "1.0.6"
description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp documents"
category = "dev"
optional = false
python-versions = ">=3.5"
python-versions = ">=3.9"
[package.extras]
lint = ["flake8", "mypy", "docutils-stubs"]
standalone = ["Sphinx (>=5)"]
test = ["pytest"]
[[package]]
name = "sphinxcontrib-htmlhelp"
version = "2.0.1"
version = "2.0.5"
description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files"
category = "dev"
optional = false
python-versions = ">=3.8"
python-versions = ">=3.9"
[package.extras]
lint = ["flake8", "mypy", "docutils-stubs"]
standalone = ["Sphinx (>=5)"]
test = ["pytest", "html5lib"]
[[package]]
@ -849,26 +852,28 @@ six = ">=1.5.2"
[[package]]
name = "sphinxcontrib-qthelp"
version = "1.0.3"
description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document."
version = "1.0.7"
description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp documents"
category = "dev"
optional = false
python-versions = ">=3.5"
python-versions = ">=3.9"
[package.extras]
lint = ["flake8", "mypy", "docutils-stubs"]
standalone = ["Sphinx (>=5)"]
test = ["pytest"]
[[package]]
name = "sphinxcontrib-serializinghtml"
version = "1.1.5"
description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle)."
version = "1.1.10"
description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle)"
category = "dev"
optional = false
python-versions = ">=3.5"
python-versions = ">=3.9"
[package.extras]
lint = ["flake8", "mypy", "docutils-stubs"]
standalone = ["Sphinx (>=5)"]
test = ["pytest"]
[[package]]
@ -911,7 +916,7 @@ python-versions = ">=3.7"
[[package]]
name = "tomlkit"
version = "0.12.3"
version = "0.12.4"
description = "Style preserving TOML library"
category = "main"
optional = false
@ -938,7 +943,7 @@ asyncmy = ["asyncmy (>=0.2.5,<0.3.0)"]
asyncodbc = ["asyncodbc (>=0.1.1,<0.2.0)"]
asyncpg = ["asyncpg"]
accel = ["ciso8601", "orjson", "uvloop"]
psycopg = ["psycopg[pool,binary] (==3.0.12)"]
psycopg = ["psycopg[binary,pool] (==3.0.12)"]
[[package]]
name = "tweepy"
@ -970,7 +975,7 @@ python-versions = "*"
[[package]]
name = "typing-extensions"
version = "4.9.0"
version = "4.10.0"
description = "Backported and Experimental Type Hints for Python 3.8+"
category = "main"
optional = false
@ -978,7 +983,7 @@ python-versions = ">=3.8"
[[package]]
name = "unidecode"
version = "1.3.7"
version = "1.3.8"
description = "ASCII transliterations of Unicode text"
category = "dev"
optional = false