openSUSE Python
Threads by month
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
November 2023
- 8 participants
- 11 discussions
python-gp-libs aborts the tests with a _pytest.pathlib.ImportPathMismatchError
by Johannes Kastl 23 Nov '23
by Johannes Kastl 23 Nov '23
23 Nov '23
Dear Pythons,
as libtmux now requires python-gp-libs I started packaging it.
The package builds without tests and is usable, aka libtmux builds. But the
tests are failing. Or rather aborted due to
_pytest.pathlib.ImportPathMismatchError errors
> https://build.opensuse.org/package/live_build_log/home:ojkastl_buildservice…
I have no clue why the tests are aborted. One thing I noted was that the package
puts files into the %{python_sitelib}/ directory instead of into a subdirectory
named after the package. Not sure if this is intended or related to the issues.
> %{python_sitelib}/doctest_docutils.py
> %{python_sitelib}/docutils_compat.py
> %{python_sitelib}/gp_libs.py
> %{python_sitelib}/linkify_issues.py
> %{python_sitelib}/pytest_doctest_docutils.py
Thanks in advance for any hints!
Kind Regards,
Johannes
Here is one of the three errors:
> [ 32s] + pytest-3.9 --ignore=_build.python39 --ignore=_build.python310 --ignore=_build.python311 -v
> [ 32s] ============================= test session starts ==============================
> [ 32s] collecting ... collected 34 items / 3 errors
> [ 32s]
> [ 32s] ==================================== ERRORS ====================================
> [ 32s] ___________________ ERROR collecting src/doctest_docutils.py ___________________
> [ 32s] /usr/lib/python3.9/site-packages/_pytest/runner.py:341: in from_call
> [ 32s] result: Optional[TResult] = func()
> [ 32s] cls = <class '_pytest.runner.CallInfo'>
> [ 32s] duration = 0.00017835699986790132
> [ 32s] excinfo = <ExceptionInfo ImportPathMismatchError('doctest_docutils', '/home/abuild/rpmbuild/BUILDROOT/python-gp-libs-0.0.4-0.x86...packages/doctest_docutils.py', PosixPa
> th('/home/abuild/rpmbuild/BUILD/gp_libs-0.0.4/src/doctest_docutils.py')) tblen=4>
> [ 32s] func = <function pytest_make_collect_report.<locals>.<lambda> at 0x7f4ac7c0a160>
> [ 32s] precise_start = 1551.728181141
> [ 32s] precise_stop = 1551.728359498
> [ 32s] reraise = None
> [ 32s] result = None
> [ 32s] start = 1700719116.762277
> [ 32s] stop = 1700719116.7624557
> [ 32s] when = 'collect'
> [ 32s] /usr/lib/python3.9/site-packages/_pytest/runner.py:372: in <lambda>
> [ 32s] call = CallInfo.from_call(lambda: list(collector.collect()), "collect")
> [ 32s] collector = <DoctestModule src/doctest_docutils.py>
> [ 32s] /usr/lib/python3.9/site-packages/_pytest/doctest.py:567: in collect
> [ 32s] module = import_path(
> [ 32s] MockAwareDocTestFinder = <class '_pytest.doctest.DoctestModule.collect.<locals>.MockAwareDocTestFinder'>
> [ 32s] doctest = <module 'doctest' from '/usr/lib64/python3.9/doctest.py'>
> [ 32s] self = <DoctestModule src/doctest_docutils.py>
> [ 32s] /usr/lib/python3.9/site-packages/_pytest/pathlib.py:590: in import_path
> [ 32s] raise ImportPathMismatchError(module_name, module_file, path)
> [ 32s] E _pytest.pathlib.ImportPathMismatchError: ('doctest_docutils', '/home/abuild/rpmbuild/BUILDROOT/python-gp-libs-0.0.4-0.x86_64/usr/lib/python3.9/site-packages/doctest_docutils.py
> ', PosixPath('/home/abuild/rpmbuild/BUILD/gp_libs-0.0.4/src/doctest_docutils.py'))
> [ 32s] ignore = ''
> [ 32s] is_same = False
> [ 32s] mod = <module 'doctest_docutils' from '/home/abuild/rpmbuild/BUILDROOT/python-gp-libs-0.0.4-0.x86_64/usr/lib/python3.9/site-packages/doctest_docutils.py'>
> [ 32s] mode = <ImportMode.prepend: 'prepend'>
> [ 32s] module_file = '/home/abuild/rpmbuild/BUILDROOT/python-gp-libs-0.0.4-0.x86_64/usr/lib/python3.9/site-packages/doctest_docutils.py'
> [ 32s] module_name = 'doctest_docutils'
> [ 32s] p = PosixPath('/home/abuild/rpmbuild/BUILD/gp_libs-0.0.4/src/doctest_docutils.py')
> [ 32s] path = PosixPath('/home/abuild/rpmbuild/BUILD/gp_libs-0.0.4/src/doctest_docutils.py')
> [ 32s] pkg_path = None
> [ 32s] pkg_root = PosixPath('/home/abuild/rpmbuild/BUILD/gp_libs-0.0.4/src')
> [ 32s] root = PosixPath('/home/abuild/rpmbuild/BUILD/gp_libs-0.0.4')
--
Johannes Kastl
Linux Consultant & Trainer
Tel.: +49 (0) 151 2372 5802
Mail: kastl(a)b1-systems.de
B1 Systems GmbH
Osterfeldstraße 7 / 85088 Vohburg
http://www.b1-systems.de
GF: Ralph Dehner
Unternehmenssitz: Vohburg / AG: Ingolstadt,HRB 3537
3
4
Non-integrated packages in devel:languages:python:
devel:languages:python/micropython-lib
devel:languages:python/python-RPi.GPIO
devel:languages:python/python-Twiggy
devel:languages:python/python-aio-pika
devel:languages:python/python-aiormq
devel:languages:python/python-anymarkup
devel:languages:python/python-asyncio-pool
devel:languages:python/python-bluepy
devel:languages:python/python-brotlipy
devel:languages:python/python-browsers
devel:languages:python/python-chai
devel:languages:python/python-chess
devel:languages:python/python-cliff
devel:languages:python/python-dash
devel:languages:python/python-editdistance-s
devel:languages:python/python-fangfrisch
devel:languages:python/python-fixedint
devel:languages:python/python-goobook
devel:languages:python/python-icecream
devel:languages:python/python-lastversion
devel:languages:python/python-mkdocs-redirects
devel:languages:python/python-mmllib
devel:languages:python/python-msgfy
devel:languages:python/python-nagiosplugin
devel:languages:python/python-nr.collections
devel:languages:python/python-nr.fs
devel:languages:python/python-nr.metaclass
devel:languages:python/python-nr.pylang.utils
devel:languages:python/python-nr.utils.re
devel:languages:python/python-opentelemetry-instrumentation
devel:languages:python/python-opentelemetry-semantic-conventions
devel:languages:python/python-orangebox
devel:languages:python/python-packageurl-python
devel:languages:python/python-preshed
devel:languages:python/python-pylsp-isort
devel:languages:python/python-tabledata
devel:languages:python/python-update_checker
devel:languages:python/python-urllib-gssapi
devel:languages:python/python-vagrant
Packages with diff in devel:languages:python:
devel:languages:python/python-amqpstorm
devel:languages:python/python-bowler
devel:languages:python/python-cloup
devel:languages:python/python-discogs-client
devel:languages:python/python-email-validator
devel:languages:python/python-google-cloud-storage
devel:languages:python/python-jsonschema
devel:languages:python/python-lml
devel:languages:python/python-moban
devel:languages:python/python-pydantic
devel:languages:python/python-requests-mock
devel:languages:python/python-scripttest
devel:languages:python/python-trio
Non-integrated packages in devel:languages:python:avocado:
Packages with diff in devel:languages:python:avocado:
devel:languages:python:avocado/python-avocado
Non-integrated packages in devel:languages:python:aws:
devel:languages:python:aws/python-s3fs
Packages with diff in devel:languages:python:aws:
Non-integrated packages in devel:languages:python:azure:
devel:languages:python:azure/python-azure-ai-contentsafety
devel:languages:python:azure/python-azure-appconfiguration-provider
devel:languages:python:azure/python-azure-core-experimental
devel:languages:python:azure/python-azure-defender-easm
devel:languages:python:azure/python-azure-developer-devcenter
devel:languages:python:azure/python-azure-healthinsights-cancerprofiling
devel:languages:python:azure/python-azure-healthinsights-clinicalmatching
devel:languages:python:azure/python-azure-iot-deviceprovisioning
devel:languages:python:azure/python-azure-mgmt-devhub
devel:languages:python:azure/python-azure-monitor-opentelemetry-exporter
Packages with diff in devel:languages:python:azure:
Non-integrated packages in devel:languages:python:certbot:
Packages with diff in devel:languages:python:certbot:
Non-integrated packages in devel:languages:python:django:
devel:languages:python:django/python-django-fsm
devel:languages:python:django/python-django-prometheus
devel:languages:python:django/python-django-pyscss
devel:languages:python:django/python-django-threadedcomments
Packages with diff in devel:languages:python:django:
Non-integrated packages in devel:languages:python:Factory:
devel:languages:python:Factory/pypy3
devel:languages:python:Factory/python313
Packages with diff in devel:languages:python:Factory:
devel:languages:python:Factory/python311
Non-integrated packages in devel:languages:python:flask:
devel:languages:python:flask/python-Flask-Assets
devel:languages:python:flask/python-Flask-OpenTracing
Packages with diff in devel:languages:python:flask:
Non-integrated packages in devel:languages:python:jupyter:
Packages with diff in devel:languages:python:jupyter:
devel:languages:python:jupyter/python-jupyter-server-terminals
Non-integrated packages in devel:languages:python:numeric:
devel:languages:python:numeric/python-hyperspy
devel:languages:python:numeric/python-pomegranate
devel:languages:python:numeric/python-pyvo
Packages with diff in devel:languages:python:numeric:
devel:languages:python:numeric/python-awkward-cpp
devel:languages:python:numeric/python-gscholar
devel:languages:python:numeric/python-librosa
devel:languages:python:numeric/python-streamz
Non-integrated packages in devel:languages:python:pyramid:
Packages with diff in devel:languages:python:pyramid:
Non-integrated packages in devel:languages:python:pytest:
Packages with diff in devel:languages:python:pytest:
1
0
Needed updates for devel:languages:python:
These packages don't seem to be available on PyPI:
ansible
micropython
micropython-lib
preinstallimage-python
python2-pip
python2-pycairo
python2-setuptools
These packages need to be upgraded:
python-Babel (2.12.1 -> 2.13.1)
python-Cycler (0.11.0 -> 0.12.1)
python-Faker (19.10.0 -> 20.0.3)
python-FormEncode (2.0.1 -> 2.1.0)
python-GitPython (3.1.34.1693646983.2a2ae77 -> 3.1.40)
python-Glymur (0.11.3 -> 0.12.8)
python-IMAPClient (2.3.1 -> 3.0.0)
python-Lektor (3.3.7 -> 3.3.10)
python-Logbook (1.6.0 -> 1.7.0.post0)
python-M2Crypto (0.40.0 -> 0.40.1)
python-Mako (1.2.4 -> 1.3.0)
python-Markups (3.0.0 -> 4.0.0)
python-MechanicalSoup (1.2.0 -> 1.3.0)
python-Nuitka (1.8.4 -> 1.8.6)
python-Paste (3.5.3 -> 3.7.1)
python-PasteDeploy (2.1.1+git.1652668078.0f0697d -> 3.0.1)
python-Pillow (10.0.1 -> 10.1.0)
python-Protego (0.2.1 -> 0.3.0)
python-PyAudio (0.2.11 -> 0.2.14)
python-PyAutoGUI (0.9.53 -> 0.9.54)
python-PyGithub (1.57 -> 2.1.1)
python-PyHamcrest (2.0.3 -> 2.1.0)
python-PyICU (2.11 -> 2.12)
python-PyInstaller (5.13.0 -> 6.2.0)
python-PyLaTeX (1.4.1 -> 1.4.2)
python-PyMuPDF (1.21.1 -> 1.23.6)
python-PyPDF2 (2.11.1 -> 3.0.1)
python-PyScreeze (0.1.28 -> 0.1.30)
python-PyTweening (1.0.4 -> 1.0.7)
python-PyWebDAV3 (0.9.14 -> 0.10.0)
python-Pygments (2.16.1 -> 2.17.0)
python-Pyphen (0.10.0 -> 0.14.0)
python-Pyro5 (5.14 -> 5.15)
python-QDarkStyle (3.0.2 -> 3.2.1)
python-QtAwesome (1.2.1 -> 1.2.3)
python-QtPy (2.4.0 -> 2.4.1)
python-Rtree (0.9.7 -> 1.1.0)
python-SPARQLWrapper (1.8.5 -> 2.0.0)
python-SQLAlchemy (2.0.21 -> 2.0.23)
python-Scrapy (2.7.1 -> 2.11.0)
python-SimpleWebSocketServer (0.1.1 -> 0.1.2)
python-SpeechRecognition (3.8.1 -> 3.10.0)
python-Telethon (1.30.3 -> 1.32.1)
python-Twisted (22.10.0 -> 23.10.0)
python-WSME (0.11.0 -> 0.12.1)
python-WTForms (3.0.1 -> 3.1.1)
python-Wand (0.6.11 -> 0.6.13)
python-ZConfig (3.6.1 -> 4.0)
python-ZEO (5.4.0 -> 5.4.1)
python-ZODB (5.8.0 -> 5.8.1)
python-aenum (3.1.12 -> 3.1.15)
python-aiodataloader (0.2.1 -> 0.4.0)
python-aiodns (3.0.0 -> 3.1.1)
python-aiofiles (23.1.0 -> 23.2.1)
python-aiohttp (3.8.6 -> 3.9.0)
python-aiohttp-jinja2 (1.5.1 -> 1.6)
python-aiomisc (17.3.0 -> 17.3.25)
python-aioquic (0.9.21 -> 0.9.23)
python-aiostream (0.4.5 -> 0.5.2)
python-allpairspy (2.5.0 -> 2.5.1)
python-amqpstorm (2.10.4 -> 2.10.6)
python-annoy (1.17.1 -> 1.17.3)
python-anyio (3.7.1 -> 4.0.0)
python-ara (1.6.1 -> 1.7.0)
python-argcomplete (3.1.4 -> 3.1.6)
python-argon2-cffi (21.3.0 -> 23.1.0)
python-asgiref (3.6.0 -> 3.7.2)
python-asyncpg (0.28.0 -> 0.29.0)
python-atlassian-python-api (2.0.1 -> 3.41.3)
python-atpublic (3.1.1 -> 4.0)
python-audioread (3.0.0 -> 3.0.1)
python-autoflake (1.5.3 -> 2.2.1)
python-av (10.0.0 -> 11.0.0)
python-bincopy (17.14.5 -> 20.0.0)
python-bitstring (3.1.9 -> 4.1.2)
python-bitstruct (8.17.0 -> 8.19.0)
python-blessed (1.19.1 -> 1.20.0)
python-boltons (21.0.0 -> 23.1.1)
python-bracex (2.2.1 -> 2.4)
python-branca (0.6.0 -> 0.7.0)
python-buttplug (0.2.0 -> 0.3.0)
python-cPyparsing (2.4.7.2.1.2 -> 2.4.7.2.2.9)
python-caldav (0.10.0 -> 1.3.6)
python-catkin-pkg (0.4.24 -> 1.0.0)
python-cattrs (22.2.0 -> 23.2.1)
python-cbor2 (5.4.6 -> 5.5.1)
python-celery (5.2.7 -> 5.3.5)
python-certifi (2023.7.22 -> 2023.11.17)
python-cftime (1.6.2 -> 1.6.3)
python-charset-normalizer (3.3.0 -> 3.3.2)
python-checkdmarc (4.4.1 -> 4.8.5)
python-cheroot (9.0.0 -> 10.0.0)
python-circuitbreaker (1.3.2 -> 2.0.0)
python-ciscoconfparse (1.7.18 -> 1.9.37)
python-cleo (2.0.1 -> 2.1.0)
python-click-aliases (1.0.1 -> 1.0.3)
python-click-default-group (1.2.2 -> 1.2.4)
python-click-didyoumean (0.0.3 -> 0.3.0)
python-click-help-colors (0.9.2 -> 0.9.4)
python-cloudpickle (2.2.1 -> 3.0.0)
python-cloudscraper (1.2.58 -> 1.2.71)
python-cloup (3.0.2 -> 3.0.3)
python-coconut (1.6.0 -> 3.0.3)
python-colander (1.7.0 -> 2.0)
python-compat-patcher-core (2.1 -> 2.2)
python-confluent-kafka (2.1.1 -> 2.3.0)
python-constantly (15.1.0 -> 23.10.4)
python-construct (2.10.68 -> 2.10.69)
python-coverage (7.3.1 -> 7.3.2)
python-cramjam (2.6.2 -> 2.7.0)
python-cron-descriptor (1.4 -> 1.4.0)
python-croniter (1.4.1 -> 2.0.1)
python-crontab (0.23.0 -> 1.0.1)
python-cssutils (2.7.1 -> 2.9.0)
python-daiquiri (3.2.1 -> 3.2.3)
python-databases (0.7.0 -> 0.8.0)
python-dateparser (1.1.8 -> 1.2.0)
python-ddg3 (0.6.6git~20170824T092521~0ef6b2f -> 0.6.8)
python-ddt (1.6.0 -> 1.7.0)
python-deepdiff (6.3.0 -> 6.7.1)
python-derpconf (0.8.3 -> 0.8.4)
python-devpi-client (7.0.1 -> 7.0.2)
python-dictknife (0.13.0 -> 0.14.0)
python-diff-match-patch (20200713 -> 20230430)
python-dill (0.3.6 -> 0.3.7)
python-dirty-equals (0.7.0 -> 0.7.1.post0)
python-dj-database-url (1.3.0 -> 2.1.0)
python-djangorestframework-simplejwt (4.6.0 -> 5.3.0)
python-dkimpy (1.0.5 -> 1.1.5)
python-docformatter (1.4 -> 1.7.5)
python-docrepr (0.1.1 -> 0.2.0)
python-docstring-to-markdown (0.12 -> 0.13)
python-dominate (2.8.0 -> 2.9.0)
python-dpkt (1.9.7.2 -> 1.9.8)
python-dropbox (10.4.1 -> 11.36.2)
python-dynaconf (3.1.11 -> 3.2.4)
python-edgegrid-python (1.2.1 -> 1.3.1)
python-elastic-transport (8.4.0 -> 8.10.0)
python-elasticsearch (8.10.0 -> 8.11.0)
python-elasticsearch-dsl (8.9.0 -> 8.11.0)
python-email-validator (2.1.0 -> 2.1.0.post1)
python-ephem (4.1.4 -> 4.1.5)
python-et_xmlfile (1.0.1 -> 1.1.0)
python-exceptiongroup (1.1.2 -> 1.1.3)
python-extension-helpers (1.0.0 -> 1.1.0)
python-fake-useragent (1.2.1 -> 1.3.0)
python-fakeredis (2.19.0 -> 2.20.0)
python-fanficfare (4.27.0 -> 4.29.0)
python-fastjsonschema (2.18.0 -> 2.19.0)
python-fedora-messaging (3.2.0 -> 3.4.1)
python-fido2 (1.1.1 -> 1.1.2)
python-filelock (3.12.3 -> 3.13.1)
python-findpython (0.2.5 -> 0.4.0)
python-flake8-builtins (2.1.0 -> 2.2.0)
python-flake8-deprecated (2.0.1 -> 2.2.1)
python-flake8-docstrings (1.6.0 -> 1.7.0)
python-flake8-isort (6.0.0 -> 6.1.1)
python-flake8-pep3101 (2.0.0 -> 2.1.0)
python-flake8-pyi (23.6.0 -> 23.11.0)
python-flexmock (0.10.8 -> 0.11.3)
python-flower (1.1.0 -> 2.0.1)
python-flufl.i18n (4.1.1 -> 5.0.2)
python-flufl.lock (7.1.1 -> 8.0.2)
python-fluidity-sm (0.2.0 -> 0.2.1)
python-flynt (0.78 -> 1.0.1)
python-fontParts (0.11.0 -> 0.12.1)
python-forbiddenfruit (0.1.3 -> 0.1.4)
python-freetype-py (2.3.0 -> 2.4.0)
python-fritzconnection (1.10.3 -> 1.13.2)
python-frozendict (2.3.5 -> 2.3.8)
python-ftfy (6.0.3 -> 6.1.1)
python-ftputil (3.4 -> 5.0.4)
python-funcy (1.18 -> 2.0)
python-gTTS (2.3.2 -> 2.4.0)
python-ged4py (0.1.12 -> 0.4.4)
python-geomet (1.0.0 -> 1.1.0)
python-getmac (0.8.3 -> 0.9.4)
python-gevent (23.9.0 -> 23.9.1)
python-geventhttpclient (2.0.9 -> 2.0.11)
python-git-pw (2.4.0 -> 2.5.0)
python-gitdb (4.0.10 -> 4.0.11)
python-glean (1.19.0 -> 1.23.0)
python-glean-parser (6.3.0 -> 10.0.3)
python-glfw (2.5.5 -> 2.6.3)
python-google-api-core (2.12.0 -> 2.14.0)
python-google-api-python-client (2.103.0 -> 2.108.0)
python-google-auth (2.23.2 -> 2.23.4)
python-google-cloud-kms (2.19.1 -> 2.19.2)
python-google-cloud-speech (2.21.0 -> 2.22.0)
python-google-cloud-storage (2.10.0 -> 2.13.0)
python-google-cloud-translate (3.12.0 -> 3.12.1)
python-googleapis-common-protos (1.60.0 -> 1.61.0)
python-gpxpy (1.5.0 -> 1.6.1)
python-graphene (3.2.1 -> 3.3)
python-greenlet (3.0.0 -> 3.0.1)
python-grimoirelab-toolkit (0.3.4 -> 0.4.0)
python-grpc-google-iam-v1 (0.12.4 -> 0.12.7)
python-gspread (5.7.2 -> 5.12.0)
python-gunicorn (20.1.0 -> 21.2.0)
python-gvm-tools (23.4.0 -> 23.11.0)
python-hammett (0.5.0 -> 0.9.4)
python-hanzidentifier (1.1.0 -> 1.2.0)
python-hatch_nodejs_version (0.3.1 -> 0.3.2)
python-hcloud (1.28.0 -> 1.32.0)
python-hijri-converter (2.2.4 -> 2.3.1)
python-hiredis (2.2.2 -> 2.2.3)
python-holidays (0.20 -> 0.36)
python-hsluv (5.0.3 -> 5.0.4)
python-httpcore (0.18.0 -> 1.0.2)
python-httptools (0.5.0 -> 0.6.1)
python-httpx (0.25.0 -> 0.25.1)
python-humanreadable (0.1.0 -> 0.4.0)
python-hunter (3.5.1 -> 3.6.1)
python-hupper (1.10.3 -> 1.12)
python-hvac (1.1.0 -> 2.0.0)
python-hypothesis (6.88.1 -> 6.89.0)
python-hypothesmith (0.3.0 -> 0.3.1)
python-icalendar (4.1.0 -> 5.0.11)
python-identify (2.5.31 -> 2.5.32)
python-imagecodecs (2023.3.16 -> 2023.9.18)
python-imageio (2.31.1 -> 2.32.0)
python-imageio-ffmpeg (0.4.8 -> 0.4.9)
python-immutables (0.19 -> 0.20)
python-importlab (0.8 -> 0.8.1)
python-importlib-resources (6.0.1 -> 6.1.1)
python-inflate64 (0.3.1 -> 1.0.0)
python-ini2toml (0.12 -> 0.13)
python-injector (0.20.1 -> 0.21.0)
python-invocations (3.0.2 -> 3.3.0)
python-irc (19.0.1 -> 20.3.0)
python-isbnlib (3.10.12 -> 3.10.14)
python-iso8601 (1.1.0 -> 2.1.0)
python-itemadapter (0.7.0 -> 0.8.0)
python-itemloaders (1.0.6 -> 1.1.0)
python-iwlib (1.6.2 -> 1.7.0)
python-jaraco.classes (3.2.3 -> 3.3.0)
python-jaraco.develop (8.2.0 -> 8.3.0)
python-jaraco.envs (2.4.0 -> 2.6.0)
python-jaraco.functools (3.6.0 -> 4.0.0)
python-jaraco.itertools (6.2.1 -> 6.4.1)
python-jaraco.logging (3.1.2 -> 3.2.0)
python-jaraco.packaging (9.2.0 -> 9.4.0)
python-jaraco.path (3.5.0 -> 3.7.0)
python-jdatetime (4.1.0 -> 4.1.1)
python-jellyfish (0.8.2 -> 1.0.3)
python-jira (3.5.1 -> 3.5.2)
python-joblib (1.2.0 -> 1.3.2)
python-josepy (1.13.0 -> 1.14.0)
python-jsbeautifier (1.14.7 -> 1.14.11)
python-json-rpc (1.14.0 -> 1.15.0)
python-json5 (0.9.13 -> 0.9.14)
python-json_tricks (3.17.1 -> 3.17.3)
python-jsonlines (3.1.0 -> 4.0.0)
python-jsonpatch (1.32 -> 1.33)
python-jsonpickle (3.0.1 -> 3.0.2)
python-jsonpointer (2.3 -> 2.4)
python-jsonref (0.2 -> 1.1.0)
python-jsonschema-spec (0.2.3 -> 0.2.4)
python-junos-eznc (2.6.7 -> 2.6.8)
python-jwcrypto (1.4.2 -> 1.5.0)
python-keyring (24.2.0 -> 24.3.0)
python-keyrings.alt (4.2.0 -> 5.0.0)
python-khal (0.10.5 -> 0.11.2)
python-kismet-rest (2019.05.02 -> 2020.5.1)
python-kismetdb (2019.05.05 -> 2021.6.1)
python-kiss-headers (2.3.1 -> 2.4.3)
python-kiwisolver (1.4.4 -> 1.4.5)
python-kmatch (0.4.0 -> 0.5.0)
python-kmod (0.9.1 -> 0.9.2)
python-kombu (5.2.4 -> 5.3.4)
python-langtable (0.0.61 -> 0.0.64)
python-lark (1.1.5 -> 1.1.8)
python-lazy (1.5 -> 1.6)
python-lazy-loader (0.2 -> 0.3)
python-lhafile (0.2.2 -> 0.3.0)
python-libarchive-c (4.0 -> 5.0)
python-libcst (0.4.9 -> 1.1.0)
python-libnacl (1.7.2 -> 2.1.0)
python-libusb1 (3.0.0 -> 3.1.0)
python-license-expression (30.1.0 -> 30.1.1)
python-line_profiler (4.0.3 -> 4.1.2)
python-logging-journald (0.6.5 -> 0.6.6)
python-logilab-common (1.9.8 -> 1.11.0)
python-looseversion (1.1.2 -> 1.3.0)
python-macholib (1.16.2 -> 1.16.3)
python-makefun (1.15.1 -> 1.15.2)
python-markdown-it-py (2.2.0 -> 3.0.0)
python-markdown2 (2.4.6 -> 2.4.10)
python-marshmallow (3.19.0 -> 3.20.1)
python-mbstrdecoder (1.1.2 -> 1.1.3)
python-md2workflow (1.4.18 -> 1.4.19)
python-mdit-py-plugins (0.3.0 -> 0.4.0)
python-mechanize (0.4.8 -> 0.4.9)
python-mediafile (0.11.0 -> 0.12.0)
python-memory_profiler (0.57.0 -> 0.61.0)
python-merge3 (0.0.12 -> 0.0.14)
python-meson-python (0.14.0 -> 0.15.0)
python-methodtools (0.4.2 -> 0.4.7)
python-micropipenv (1.4.5 -> 1.5.2)
python-mimesis (4.0.0 -> 11.1.0)
python-minio (7.1.16 -> 7.2.0)
python-mitmproxy (9.0.1 -> 10.1.5)
python-mkdocs-bootstrap (1.1 -> 1.1.1)
python-more-itertools (9.1.0 -> 10.1.0)
python-msgpack (1.0.5 -> 1.0.7)
python-msgspec (0.18.2 -> 0.18.4)
python-msm (0.8.5 -> 0.9.0)
python-msoffcrypto-tool (4.10.2 -> 5.1.1)
python-mss (7.0.1 -> 9.0.1)
python-munch (3.0.0 -> 4.0.0)
python-murmurhash (1.0.9 -> 1.0.10)
python-mutagen (1.46.0 -> 1.47.0)
python-mutmut (2.0.0 -> 2.4.4)
python-mycli (1.26.1 -> 1.27.0)
python-mypy (1.5.1 -> 1.7.0)
python-mysqlclient (2.1.1 -> 2.2.0)
python-myst-parser (0.17.2 -> 2.0.0)
python-ncclient (0.6.13 -> 0.6.15)
python-nest-asyncio (1.5.6 -> 1.5.8)
python-netmiko (4.2.0 -> 4.3.0)
python-netutils (1.4.1 -> 1.6.0)
python-nh3 (0.2.13 -> 0.2.14)
python-nltk (3.8 -> 3.8.1)
python-nocaselist (1.0.6 -> 2.0.0)
python-nodeenv (1.7.0 -> 1.8.0)
python-nose2 (0.12.0 -> 0.14.0)
python-ntc-templates (3.5.0 -> 4.0.1)
python-num2words (0.5.12 -> 0.5.13)
python-objgraph (3.5.0 -> 3.6.0)
python-ogr (0.45.0 -> 0.47.1)
python-oic (1.5.0 -> 1.6.1)
python-oletools (0.60 -> 0.60.1)
python-openai (0.27.8 -> 1.3.3)
python-openapi-core (0.18.1 -> 0.18.2)
python-openapi-spec-validator (0.6.0 -> 0.7.1)
python-opencensus-ext-azure (1.1.6 -> 1.1.11)
python-opentelemetry-api (1.17.0 -> 1.21.0)
python-orjson (3.8.10 -> 3.9.10)
python-ospd-openvas (22.4.5 -> 22.6.1)
python-outcome (1.2.0 -> 1.3.0.post0)
python-overrides (7.3.1 -> 7.4.0)
python-pamela (1.0.0 -> 1.1.0)
python-pan-python (0.16.0 -> 0.22.0)
python-param (2.0.0 -> 2.0.1)
python-parse (1.19.0 -> 1.19.1)
python-parse_type (0.6.1 -> 0.6.2)
python-parsel (1.7.0 -> 1.8.1)
python-parsy (1.3.0 -> 2.1)
python-partd (1.4.0 -> 1.4.1)
python-parver (0.4 -> 0.5)
python-patchy (2.6.0 -> 2.8.0)
python-path (16.6.0 -> 16.7.1)
python-pathvalidate (2.5.2 -> 3.2.0)
python-patiencediff (0.2.12 -> 0.2.14)
python-pbr (5.11.1 -> 6.0.0)
python-pdfminer.six (20200726 -> 20221105)
python-pdm (2.7.4 -> 2.10.3)
python-pdm-backend (2.1.0 -> 2.1.7)
python-pdm-pep517 (1.1.2 -> 1.1.4)
python-pecan (1.4.2 -> 1.5.1)
python-pegen (0.2.0 -> 0.3.0)
python-pelican (4.8.0 -> 4.9.1)
python-pem (21.2.0 -> 23.1.0)
python-perky (0.5.5 -> 0.9.2)
python-persistent (5.0 -> 5.1)
python-pgmagick (0.7.4 -> 0.7.6)
python-phonenumbers (8.13.18 -> 8.13.25)
python-pikepdf (8.5.2 -> 8.7.1)
python-pingparsing (1.4.0 -> 1.4.1)
python-pip (23.2.1 -> 23.3.1)
python-pip-licenses (4.3.2 -> 4.3.3)
python-pip-run (8.8.2 -> 12.4.0)
python-pipdeptree (2.7.1 -> 2.13.1)
python-platformdirs (3.11.0 -> 4.0.0)
python-platformio (6.1.5 -> 6.1.11)
python-plumbum (1.7.2 -> 1.8.2)
python-pmw (2.0.1 -> 2.1.1)
python-podcastparser (0.6.9 -> 0.6.10)
python-poetry (1.6.1 -> 1.7.1)
python-poetry-core (1.7.0 -> 1.8.1)
python-poetry-plugin-export (1.5.0 -> 1.6.0)
python-polib (1.1.1 -> 1.2.0)
python-pony (0.7.16 -> 0.7.17)
python-pooch (1.7.0 -> 1.8.0)
python-port-for (0.6.2 -> 0.7.2)
python-portalocker (2.7.0 -> 2.8.2)
python-portend (3.1.0 -> 3.2.0)
python-portpicker (1.5.2 -> 1.6.0)
python-precis-i18n (1.0.5 -> 1.1.0)
python-process-tests (2.1.2 -> 3.0.0)
python-prometheus-client (0.17.0 -> 0.18.0)
python-prompt_toolkit (3.0.38 -> 3.0.41)
python-psycopg (3.1.9 -> 3.1.13)
python-psycopg-c (3.1.9 -> 3.1.13)
python-psycopg-pool (3.1.7 -> 3.2.0)
python-psycopg2 (2.9.7 -> 2.9.9)
python-psygnal (0.9.3 -> 0.9.5)
python-ptpython (3.0.22 -> 3.0.23)
python-ptr (20.2.26 -> 22.7.12)
python-pudb (2022.1.3 -> 2023.1)
python-pulsectl (22.3.2 -> 23.5.2)
python-py3dns (3.2.1 -> 4.0.0)
python-py7zr (0.20.5 -> 0.20.8)
python-pyOCD (0.22.0 -> 0.36.0)
python-pyOpenSSL (23.2.0 -> 23.3.0)
python-pyacoustid (1.2.2 -> 1.3.0)
python-pyahocorasick (1.4.4 -> 2.0.0)
python-pyaml (21.10.1 -> 23.9.7)
python-pybcj (1.0.1 -> 1.0.2)
python-pycares (4.3.0 -> 4.4.0)
python-pyclipper (1.3.0.post4 -> 1.3.0.post5)
python-pycodestyle (2.11.0 -> 2.11.1)
python-pycryptodome (3.18.0 -> 3.19.0)
python-pycryptodomex (3.18.0 -> 3.19.0)
python-pydantic (1.10.13 -> 2.5.1)
python-pydash (6.0.2 -> 7.0.6)
python-pydata-sphinx-theme (0.14.0 -> 0.14.3)
python-pydicom (2.3.1 -> 2.4.3)
python-pydrive2 (1.10.1 -> 1.17.0)
python-pydyf (0.7.0 -> 0.8.0)
python-pyeapi (0.8.4 -> 1.0.2)
python-pyee (9.0.4 -> 11.0.1)
python-pyelftools (0.29 -> 0.30)
python-pyfakefs (5.2.4 -> 5.3.1)
python-pyfiglet (0.8.post1 -> 1.0.2)
python-pyftpdlib (1.5.7 -> 1.5.9)
python-pygal (3.0.0 -> 3.0.1)
python-pygame (2.5.0 -> 2.5.2)
python-pygit2 (1.12.2 -> 1.13.2)
python-pyglet (2.0.9 -> 2.0.10)
python-pygls (1.1.2 -> 1.2.0)
python-pyhcl (0.4.4 -> 0.4.5)
python-pyinstaller-hooks-contrib (2023.5 -> 2023.10)
python-pyipp (0.11.0 -> 0.14.4)
python-pyjnius (1.5.0 -> 1.6.1)
python-pykickstart (3.43 -> 3.50)
python-pykka (3.1.1 -> 4.0.1)
python-pylast (4.5.0 -> 5.2.0)
python-pyleri (1.3.3 -> 1.4.2)
python-pylibacl (0.6.0 -> 0.7.0)
python-pylibfdt (1.6.1 -> 1.7.0.post1)
python-pylink-square (1.1.0 -> 1.2.0)
python-pylint (3.0.1 -> 3.0.2)
python-pylint-venv (3.0.2 -> 3.0.3)
python-pylsqpack (0.3.16 -> 0.3.18)
python-pymarc (4.2.2 -> 5.1.0)
python-pymdown-extensions (10.3 -> 10.4)
python-pymetar (1.1 -> 1.4)
python-pymilter (1.0.4 -> 1.0.5)
python-pymisp (2.4.170.2 -> 2.4.178)
python-pymongo (4.3.3 -> 4.6.0)
python-pyocr (0.8.3 -> 0.8.5)
python-pyodbc (4.0.39 -> 5.0.1)
python-pyotp (2.8.0 -> 2.9.0)
python-pyp (1.1.0 -> 3.0.9)
python-pypandoc (1.11 -> 1.12)
python-pyparsing (3.1.0 -> 3.1.1)
python-pyperf (2.5.0 -> 2.6.2)
python-pypi-search (1.2.1 -> 2.0)
python-pypiserver (1.5.2 -> 2.0.1)
python-pyppmd (1.0.0 -> 1.1.0)
python-pypuppetdb (2.5.1 -> 3.2.0)
python-pyramid (2.0.1 -> 2.0.2)
python-pyroma (3.1 -> 4.2)
python-pyroute2 (0.7.3 -> 0.7.9)
python-pyrsistent (0.19.3 -> 0.20.0)
python-pysaml2 (7.2.1 -> 7.4.2)
python-pyscreenshot (3.0 -> 3.1)
python-pyshark (0.4.6 -> 0.6)
python-pysmbc (1.0.23 -> 1.0.25.1)
python-pysol-cards (0.14.2 -> 0.14.3)
python-pyspnego (0.9.2 -> 0.10.2)
python-pystache (0.6.0 -> 0.6.5)
python-pytaglib (1.5.0 -> 2.1.0)
python-pyte (0.8.1 -> 0.8.2)
python-python-box (6.1.0 -> 7.1.1)
python-python-crontab (2.7.1 -> 3.0.0)
python-python-daemon (2.3.2 -> 3.0.1)
python-python-dbusmock (0.24.1 -> 0.29.1)
python-python-docs-theme (2023.7 -> 2023.9)
python-python-engineio (4.3.4 -> 4.8.0)
python-python-for-android (2023.2.10 -> 2023.9.16)
python-python-gitlab (3.15.0 -> 4.1.1)
python-python-gnupg (0.5.0 -> 0.5.1)
python-python-gvm (23.5.0 -> 23.11.0)
python-python-jenkins (1.8.0 -> 1.8.2)
python-python-keycloak (2.6.0 -> 3.7.0)
python-python-lsp-server (1.8.2 -> 1.9.0)
python-python-lzo (1.14 -> 1.15)
python-python-mpd2 (3.0.5 -> 3.1.0)
python-python-mpv (1.0.4 -> 1.0.5)
python-python-multipart (0.0.5 -> 0.0.6)
python-python-pam (1.8.4 -> 2.0.2)
python-python-poppler (0.2.2 -> 0.4.1)
python-python-pptx (0.6.21 -> 0.6.23)
python-python-ptrace (0.9.7 -> 0.9.8)
python-python-rapidjson (1.9 -> 1.13)
python-python-slugify (5.0.2 -> 8.0.1)
python-python-socketio (5.7.2 -> 5.10.0)
python-python-socks (2.1.1 -> 2.4.3)
python-python-sql (1.4.0 -> 1.4.2)
python-python-stdnum (1.17 -> 1.19)
python-python-utils (3.4.5 -> 3.8.1)
python-python3-saml (1.15.0 -> 1.16.0)
python-pythonfinder (1.3.1 -> 2.0.6)
python-pytoolconfig (1.2.4 -> 1.2.6)
python-pytools (2022.1.14 -> 2023.1.1)
python-pyupgrade (3.4.0 -> 3.15.0)
python-pyvmomi (7.0.3 -> 8.0.2.0.1)
python-qcs-api-client (0.21.3 -> 0.23.1)
python-qrcode (7.3.1 -> 7.4.2)
python-quicktions (1.14 -> 1.15)
python-rapidfuzz (2.13.7 -> 3.5.2)
python-rarfile (4.0 -> 4.1)
python-rcssmin (1.1.1 -> 1.1.2)
python-rdflib (6.1.1 -> 7.0.0)
python-readme_renderer (41.0 -> 42.0)
python-readthedocs-sphinx-ext (2.2.2 -> 2.2.3)
python-recordclass (0.18.0.1 -> 0.21)
python-redfish (3.1.8 -> 3.2.1)
python-reedsolo (1.6.0 -> 1.7.0)
python-regex (2023.8.8 -> 2023.10.3)
python-reno (3.5.0 -> 4.0.0)
python-repoze.who (2.4.1 -> 3.0.0)
python-requests-cache (1.0.1 -> 1.1.0)
python-requirements-detector (0.7 -> 1.2.2)
python-requirements-parser (0.2.0 -> 0.5.0)
python-requre (0.8.2 -> 0.8.3)
python-resolvelib (0.8.1 -> 1.0.1)
python-responses (0.23.3 -> 0.24.1)
python-respx (0.20.1 -> 0.20.2)
python-restview (3.0.0 -> 3.0.1)
python-rethinkdb (2.4.9 -> 2.4.10)
python-rich-click (1.6.1 -> 1.7.1)
python-rjsmin (1.2.1 -> 1.2.2)
python-robotframework (6.0.1 -> 6.1.1)
python-rollbar (0.16.3 -> 1.0.0)
python-rope (1.9.0 -> 1.11.0)
python-rpds-py (0.7.1 -> 0.13.0)
python-rpmfile (1.0.4 -> 2.0.0)
python-rpyc (5.3.0 -> 5.3.1)
python-rq (1.15 -> 1.15.1)
python-rstcheck (3.3.1 -> 6.2.0)
python-rt (3.0.7 -> 3.1.3)
python-ruamel.std.pathlib (0.9.2 -> 0.12.0)
python-ruamel.yaml (0.17.35 -> 0.18.5)
python-ruff (0.1.5 -> 0.1.6)
python-schedule (1.1.0 -> 1.2.1)
python-scitokens (1.7.4 -> 1.8.1)
python-screenplain (0.9.0+git.1679319196.353e6c9 -> 0.10.0)
python-securesystemslib (0.21.0 -> 0.30.0)
python-selenium (4.10.0 -> 4.15.2)
python-semver (3.0.1 -> 3.0.2)
python-sentry-sdk (1.34.0 -> 1.35.0)
python-setproctitle (1.3.2 -> 1.3.3)
python-setuptools (68.1.2 -> 68.2.2)
python-setuptools-declarative-requirements (1.2.0 -> 1.3.0)
python-setuptools-gettext (0.1.1 -> 0.1.7)
python-setuptools-git-versioning (1.13.2 -> 1.13.5)
python-setuptools-rust (1.6.0 -> 1.8.1)
python-setuptools_scm (7.1.0 -> 8.0.4)
python-shellingham (1.5.0 -> 1.5.4)
python-shijian (2020.1.29.1857 -> 2023.10.19.215)
python-shodan (1.28.0 -> 1.30.1)
python-simpleeval (0.9.12 -> 0.9.13)
python-simplejson (3.19.1 -> 3.19.2)
python-single-version (1.5.1 -> 1.6.0)
python-slack-sdk (3.21.3 -> 3.24.0)
python-slixmpp (1.8.3 -> 1.8.4)
python-smbprotocol (1.11.0 -> 1.12.0)
python-smmap (5.0.0 -> 5.0.1)
python-smpplib (2.2.1 -> 2.2.3)
python-softlayer (6.1.4 -> 6.1.10)
python-sortinghat (0.12.0 -> 0.16.0)
python-sounddevice (0.4.5 -> 0.4.6)
python-sphinx-autodoc-typehints (1.19.2 -> 1.25.2)
python-sphinx-book-theme (0.1.3 -> 1.0.1)
python-sphinx-jsonschema (1.16.8 -> 1.19.1)
python-sphinx-removed-in (0.2.1 -> 0.2.2)
python-sphinx-tabs (3.4.1 -> 3.4.4)
python-sphinx-theme-builder (0.2.0b1 -> 0.2.0b2)
python-sphinxcontrib-pecanwsme (0.10.0 -> 0.11.0)
python-sphinxcontrib-plantuml (0.24.1 -> 0.27)
python-sphinxcontrib-towncrier (0.3.2a0 -> 0.4.0a0)
python-sphinxcontrib-youtube (1.2.0 -> 1.4.1)
python-sphinxext-opengraph (0.7.5 -> 0.9.0)
python-sphobjinv (2.2.2 -> 2.3.1)
python-spotipy (2.22.0 -> 2.23.0)
python-spsdk (1.11.0 -> 2.0.0)
python-spur (0.3.22 -> 0.3.23)
python-sqlglot (7.0.0 -> 19.5.1)
python-sqlite-utils (3.24 -> 3.35.2)
python-sqlite3-to-mysql (2.1.0 -> 2.1.1)
python-sqlitedict (1.6.0 -> 2.1.0)
python-srcinfo (0.1.1 -> 0.1.2)
python-stack-data (0.6.2 -> 0.6.3)
python-starlette (0.31.1 -> 0.32.0.post1)
python-statsd (3.3.0 -> 4.0.1)
python-stestr (4.0.1 -> 4.1.0)
python-strictyaml (1.6.2 -> 1.7.3)
python-stripe (2.63.0 -> 7.5.0)
python-structlog (22.1.0 -> 23.2.0)
python-sure (2.0.0 -> 2.0.1)
python-svglib (1.1.0 -> 1.5.1)
python-sybil (3.0.1 -> 5.0.3)
python-tableauserverclient (0.18.0 -> 0.28)
python-tablib (3.3.0 -> 3.5.0)
python-tabpy (2.5.0 -> 2.9.0)
python-tblib (1.7.0 -> 3.0.0)
python-tcolorpy (0.1.2 -> 0.1.4)
python-tenacity (8.2.2 -> 8.2.3)
python-termcolor (2.1.1 -> 2.3.0)
python-terminaltables (3.1.0 -> 3.1.10)
python-testfixtures (7.0.4 -> 7.2.2)
python-testflo (1.4.9 -> 1.4.14)
python-testtools (2.6.0 -> 2.7.1)
python-textX (3.1.1 -> 4.0.1)
python-textdistance (4.5.0 -> 4.6.0)
python-texttable (1.6.7 -> 1.7.0)
python-thespian (3.10.6 -> 3.10.7)
python-threadpoolctl (3.1.0 -> 3.2.0)
python-thriftpy2 (0.4.16 -> 0.4.17)
python-tinyrpc (1.1.6 -> 1.1.7)
python-tld (0.12.6 -> 0.13)
python-tldextract (5.1.0 -> 5.1.1)
python-tokenize-rt (5.1.0 -> 5.2.0)
python-tomlkit (0.12.1 -> 0.12.3)
python-toposort (1.7 -> 1.10)
python-towncrier (19.2.0 -> 23.11.0)
python-transaction (3.0.1 -> 4.0)
python-transitions (0.8.10 -> 0.9.0)
python-treq (22.2.0 -> 23.11.0)
python-trio-websocket (0.10.3 -> 0.11.1)
python-trove-classifiers (2023.10.18 -> 2023.11.14)
python-ttp (0.9.4 -> 0.9.5)
python-ttp-templates (0.3.2 -> 0.3.5)
python-tweepy (4.9.0 -> 4.14.0)
python-typedload (2.19 -> 2.26)
python-typeguard (4.0.0 -> 4.1.5)
python-typepy (1.3.0 -> 1.3.2)
python-tzlocal (4.3 -> 5.2)
python-u-msgpack-python (2.7.2 -> 2.8.0)
python-ua-parser (0.16.1 -> 0.18.0)
python-ufoLib2 (0.13.1 -> 0.16.0)
python-unearth (0.12.0 -> 0.12.1)
python-unicodedata2 (15.0.0 -> 15.1.0)
python-unidiff (0.7.4 -> 0.7.5)
python-unittest-xml-reporting (3.0.2 -> 3.2.0)
python-unsync (1.3 -> 1.4.0)
python-uri-template (1.2.0 -> 1.3.0)
python-uritools (4.0.0 -> 4.0.2)
python-urlextract (1.7.1 -> 1.8.0)
python-urllib3 (2.0.7 -> 2.1.0)
python-urwid (2.1.2 -> 2.2.3)
python-userpath (1.9.0 -> 1.9.1)
python-uvicorn (0.23.2 -> 0.24.0.post1)
python-uvloop (0.17.0 -> 0.19.0)
python-validate-pyproject (0.13 -> 0.15)
python-vdirsyncer (0.19.0 -> 0.19.2)
python-venusian (3.0.0 -> 3.1.0)
python-versioningit (2.2.0 -> 2.2.1)
python-vine (5.0.0 -> 5.1.0)
python-virtualenv (20.24.5 -> 20.24.6)
python-vncdotool (1.0.0 -> 1.2.0)
python-voluptuous (0.13.1 -> 0.14.1)
python-voluptuous-serialize (2.5.0 -> 2.6.0)
python-vulture (2.1 -> 2.10)
python-w3lib (1.22.0 -> 2.1.2)
python-wakeonlan (3.0.0 -> 3.1.0)
python-wasabi (1.1.1 -> 1.1.2)
python-watchfiles (0.19.0 -> 0.21.0)
python-wcmatch (8.4.1 -> 8.5)
python-wcwidth (0.2.6 -> 0.2.10)
python-weasyprint (59.0 -> 60.1)
python-weblate-language-data (2022.9 -> 2023.6)
python-websocket-client (1.5.1 -> 1.6.4)
python-websockets (11.0.3 -> 12.0)
python-websockify (0.10.0 -> 0.11.0)
python-wheel (0.41.2 -> 0.41.3)
python-wheezy.template (3.1.0 -> 3.2.1)
python-whitenoise (6.2.0 -> 6.6.0)
python-wmctrl (0.4 -> 0.5)
python-wrapt (1.15.0 -> 1.16.0)
python-wsaccel (0.6.4 -> 0.6.6)
python-wtf-peewee (3.0.4 -> 3.0.5)
python-xdg (5.1.1 -> 6.0.0)
python-xdoctest (1.1.1 -> 1.1.2)
python-xhtml2pdf (0.2.6 -> 0.2.13)
python-xkcdpass (1.19.3 -> 1.19.5)
python-xmldiff (2.4 -> 2.6.3)
python-xmlschema (2.3.0 -> 2.5.0)
python-yacron (0.17.0 -> 0.19.0)
python-yamllint (1.32.0 -> 1.33.0)
python-yamlloader (1.2.2 -> 1.3.2)
python-yapf (0.40.1 -> 0.40.2)
python-yaspin (0.18.0 -> 3.0.1)
python-yattag (1.15.1 -> 1.15.2)
python-zc.lockfile (2.0 -> 3.0.post1)
python-zdaemon (4.4 -> 5.0)
python-zeep (4.1.0 -> 4.2.1)
python-zeroconf (0.56.0 -> 0.127.0)
python-zipp (3.15.0 -> 3.17.0)
python-zodbpickle (2.6 -> 3.1)
python-zope.configuration (4.4.1 -> 5.0)
python-zope.deferredimport (4.4 -> 5.0)
python-zope.exceptions (4.6 -> 5.0.1)
python-zope.hookable (5.4 -> 6.0)
python-zope.i18nmessageid (6.0.1 -> 6.1.0)
python-zope.interface (6.0 -> 6.1)
python-zope.location (4.3 -> 5.0)
python-zope.proxy (4.6.1 -> 5.1)
python-zope.security (6.1 -> 6.2)
python-zope.testrunner (6.0 -> 6.2)
Needed updates for devel:languages:python:avocado:
These packages need to be upgraded:
python-inspektor (0.5.2 -> 0.5.3)
Needed updates for devel:languages:python:aws:
These packages need to be upgraded:
python-aws-sam-translator (1.76.0 -> 1.80.0)
python-aws-xray-sdk (2.12.0 -> 2.12.1)
python-boto3 (1.28.61 -> 1.29.3)
python-botocore (1.31.61 -> 1.32.3)
python-cfn-lint (0.80.4 -> 0.83.3)
python-moto (4.2.7 -> 4.2.9)
python-pynamodb (5.3.4 -> 5.5.0)
Needed updates for devel:languages:python:azure:
These packages need to be upgraded:
python-azure-ai-ml (1.12.0 -> 1.12.1)
python-azure-datalake-store (0.0.52 -> 0.0.53)
python-azure-mgmt (4.0.0 -> 5.0.0)
python-azure-mgmt-loadtestservice (1.0.0.0 -> 2.0.1)
python-azure-mgmt-quantum (1.0.0b3 -> 1.0.0b4)
python-azure-monitor (0.3.1 -> 0.4.0)
python-azure-schemaregistry-avroserializer (1.0.0b4 -> 1.0.0b4.post1)
python-azure-storage (0.36.0 -> 0.37.0)
python-azure-template (0.1.0b3195006 -> 0.1.0b3273802)
python-msal (1.24.1 -> 1.25.0)
python-uamqp (1.6.5 -> 1.6.6)
Needed updates for devel:languages:python:certbot:
These packages don't seem to be available on PyPI:
certbot-systemd-timer
Needed updates for devel:languages:python:django:
These packages need to be upgraded:
python-crispy-bootstrap4 (2022.1 -> 2023.1)
python-crispy-bootstrap5 (0.7 -> 2023.10)
python-django-auth-ldap (4.0.0 -> 4.6.0)
python-django-axes (5.40.1 -> 6.1.1)
python-django-bootstrap3 (14.2.0 -> 23.4)
python-django-bootstrap4 (21.2 -> 23.2)
python-django-classy-tags (3.0.1 -> 4.1.0)
python-django-codemod (1.11.0 -> 2.1.6)
python-django-cors-headers (3.13.0 -> 4.3.1)
python-django-countries (7.2.1 -> 7.5.1)
python-django-crispy-forms (2.0 -> 2.1)
python-django-debug-toolbar (3.6 -> 4.2.0)
python-django-environ (0.4.5 -> 0.11.2)
python-django-filter (23.1 -> 23.3)
python-django-graphql-jwt (0.3.4 -> 0.4.0)
python-django-health-check (3.16.5 -> 3.17.0)
python-django-import-export (2.7.1 -> 3.3.3)
python-django-js-asset (2.0 -> 2.1.0)
python-django-minio-storage (0.5.3 -> 0.5.7)
python-django-money (3.0 -> 3.4.0)
python-django-mptt (0.14 -> 0.15.0)
python-django-oauth-toolkit (1.7.0 -> 2.3.0)
python-django-oidc-provider (0.7.0 -> 0.8.1)
python-django-perf-rec (4.24.0 -> 4.25.0)
python-django-phonenumber-field (5.1.0 -> 7.2.0)
python-django-pipeline (2.0.8 -> 2.1.0)
python-django-polymorphic (3.1 -> 3.1.0)
python-django-push-notifications (3.0.0 -> 3.0.2)
python-django-registration (3.3 -> 3.4)
python-django-requests-debug-toolbar (0.0.5 -> 0.0.6)
python-django-rest-framework-client (0.1.1 -> 0.10.0)
python-django-reversion (5.0.4 -> 5.0.8)
python-django-seed (0.2.2 -> 0.3.1)
python-django-storages (1.13.2 -> 1.14.2)
python-django-taggit (4.0.0 -> 5.0.1)
python-django-timezone-field (5.1 -> 6.0.1)
python-django-treebeard (4.5.1 -> 4.7)
python-django-upgrade (1.14.1 -> 1.15.0)
python-django-widget-tweaks (1.4.8 -> 1.5.0)
python-graphene-django (3.0.0 -> 3.1.5)
python-pytest-django (4.5.2 -> 4.7.0)
python-siphashc (2.1 -> 2.3)
python-social-auth-app-django (5.0.0 -> 5.4.0)
python-swapper (1.1.2.post1 -> 1.3.0)
Needed updates for devel:languages:python:Factory:
These packages don't seem to be available on PyPI:
patterns-devel-python
pypy3
python
python310
python311
python312
python313
python38
python39
shared-python-startup
Needed updates for devel:languages:python:flask:
These packages need to be upgraded:
python-Flask (2.3.3 -> 3.0.0)
python-Flask-Babel (3.1.0 -> 4.0.0)
python-Flask-Caching (1.9.0 -> 2.1.0)
python-Flask-Compress (1.13 -> 1.14)
python-Flask-HTMLmin (2.2.0 -> 2.2.1)
python-Flask-Login (0.6.2 -> 0.6.3)
python-Flask-Mailman (0.3.0 -> 1.0.0)
python-Flask-Migrate (4.0.4 -> 4.0.5)
python-Flask-Security-Too (5.3.0 -> 5.3.2)
python-Flask-SocketIO (5.3.5 -> 5.3.6)
python-Flask-WTF (1.1.1 -> 1.2.1)
python-flask-jwt-extended (4.5.2 -> 4.5.3)
python-flask-oidc (1.4.0 -> 2.1.1)
python-flask-restx (1.1.0 -> 1.2.0)
Needed updates for devel:languages:python:jupyter:
These packages don't seem to be available on PyPI:
jupyter
jupyter-imatlab
jupyter-jupyterlab-latex
jupyter-matlab-kernel
These packages need to be upgraded:
python-anywidget (0.7.0 -> 0.7.1)
python-comm (0.1.4 -> 0.2.0)
python-ipykernel (6.25.2 -> 6.26.0)
python-ipython (8.16.1 -> 8.17.2)
python-jupyter-client (8.4.0 -> 8.6.0)
python-jupyter-collaboration (1.0.0 -> 1.2.0)
python-jupyter-core (5.4.0 -> 5.5.0)
python-jupyter-events (0.7.0 -> 0.9.0)
python-jupyter-server (2.7.3 -> 2.10.1)
python-jupyterlab (4.0.7 -> 4.0.9)
python-jupyterlab-server (2.25.0 -> 2.25.2)
python-nbclient (0.8.0 -> 0.9.0)
python-nbconvert (7.9.2 -> 7.11.0)
python-notebook (7.0.5 -> 7.0.6)
python-papermill (2.4.0 -> 2.5.0)
python-qtconsole (5.4.4 -> 5.5.1)
python-terminado (0.17.1 -> 0.18.0)
python-traitlets (5.11.2 -> 5.13.0)
python-ypy-websocket (0.8.4 -> 0.12.4)
Needed updates for devel:languages:python:numeric:
These packages need to be upgraded:
python-GooseMPL (0.12.1 -> 0.14.0)
python-GridDataFormats (1.0.1 -> 1.0.2)
python-PsyLab (0.4.7.12 -> 1.0.7)
python-PyWavelets (1.4.1 -> 1.5.0)
python-XlsxWriter (3.0.3 -> 3.1.9)
python-agate-excel (0.2.5 -> 0.4.0)
python-agate-sql (0.5.9 -> 0.7.0)
python-agate-stats (0.4.0 -> 0.4.1)
python-altair (5.1.1 -> 5.1.2)
python-apptools (5.2.0 -> 5.2.1)
python-arf (2.6.1 -> 2.6.4)
python-asdf (2.15.2 -> 3.0.1)
python-asdf-astropy (0.4.0 -> 0.5.0)
python-asdf-coordinates-schemas (0.1.0 -> 0.2.0)
python-asdf-transform-schemas (0.3.0 -> 0.4.0)
python-asdf-wcs-schemas (0.1.1 -> 0.2.0)
python-awkward (2.4.5 -> 2.5.0)
python-blosc2 (2.2.9 -> 2.3.1)
python-bokcolmaps (2.0.1 -> 3.1.2)
python-bokeh (3.3.0 -> 3.3.1)
python-cdflib (0.3.20 -> 1.2.3)
python-cluster (1.4.1.post2 -> 1.4.1.post3)
python-contourpy (1.0.7 -> 1.2.0)
python-csvkit (1.1.1 -> 1.3.0)
python-dash (2.6.2 -> 2.14.1)
python-deap (1.3.1 -> 1.4.1)
python-drms (0.6.4 -> 0.7.0)
python-dtaidistance (2.3.10 -> 2.3.11)
python-envisage (6.1.1 -> 7.0.3)
python-ezdxf (0.16.3 -> 1.1.2)
python-fabio (0.14.0 -> 2023.10.0)
python-fastparquet (2023.7.0 -> 2023.10.1)
python-fastremap (1.13.5 -> 1.14.0)
python-finance_enums (0.1.0 -> 0.3.0)
python-folium (0.14.0 -> 0.15.0)
python-girder-client (3.1.20 -> 3.1.24)
python-gsw (3.6.16 -> 3.6.17)
python-gwcs (0.18.3 -> 0.19.0)
python-h5netcdf (1.2.0 -> 1.3.0)
python-h5py (3.9.0 -> 3.10.0)
python-hepunits (2.0.1 -> 2.3.2)
python-holoviews (1.17.1 -> 1.18.1)
python-jplephem (2.15 -> 2.20)
python-kwant (1.4.3 -> 1.4.4)
python-lfdfiles (2023.4.20 -> 2023.9.26)
python-llvmlite (0.40.0 -> 0.41.1)
python-matplotlib (3.6.3 -> 3.8.2)
python-mizani (0.8.1 -> 0.10.0)
python-mpi4py (3.1.4 -> 3.1.5)
python-mpl-animators (1.0.1 -> 1.1.1)
python-ndindex (1.6 -> 1.7)
python-ndtiff (1.12.0 -> 2.2.1)
python-netCDF4 (1.6.4 -> 1.6.5)
python-netpbmfile (2020.10.18 -> 2023.8.30)
python-networkx (3.1 -> 3.2.1)
python-nibabel (4.0.2 -> 5.1.0)
python-nilearn (0.10.1 -> 0.10.2)
python-npTDMS (1.2.0 -> 1.7.1)
python-nptyping (2.4.1 -> 2.5.0)
python-numba (0.57.1 -> 0.58.1)
python-numcodecs (0.11.0 -> 0.12.1)
python-numexpr (2.8.4 -> 2.8.7)
python-numpydoc (1.5.0 -> 1.6.0)
python-o2sclpy (0.926 -> 0.928)
python-oct2py (5.0.4 -> 5.6.0)
python-oiffile (2022.9.29 -> 2023.8.30)
python-openpyxl (3.0.10 -> 3.1.2)
python-orange-canvas-core (0.1.18 -> 0.1.35)
python-orange-widget-base (4.11.0 -> 4.22.0)
python-palettable (3.3.0 -> 3.3.3)
python-pandas (2.1.1 -> 2.1.3)
python-panel (1.3.0 -> 1.3.1)
python-plotly (5.14.1 -> 5.18.0)
python-praatio (4.1.0 -> 6.1.0)
python-psychtoolbox (3.0.16 -> 3.0.19.0)
python-pyUSID (0.0.10.post2 -> 0.0.11)
python-pyemd (0.5.1 -> 1.0.0)
python-pyquil (3.5.2 -> 4.1.1)
python-pyreadstat (1.2.3 -> 1.2.4)
python-pyssim (0.6 -> 0.7)
python-python-pseudorandom (0.2.2 -> 0.3.2)
python-pythran (0.13.1 -> 0.14.0)
python-pyviz-comms (2.2.1 -> 3.0.0)
python-pyzo (4.11.2 -> 4.12.7)
python-quimb (1.4.2 -> 1.6.0)
python-reportlab (4.0.5 -> 4.0.7)
python-reproject (0.9.1 -> 0.12.0)
python-roifile (2020.11.28 -> 2023.8.30)
python-roman (3.3 -> 4.1)
python-rpcq (3.10.0 -> 3.11.0)
python-rpy2 (3.4.4 -> 3.5.14)
python-scikit-build-core (0.4.7 -> 0.6.1)
python-scikit-dsp-comm (1.2.0 -> 2.0.3)
python-scikit-hep-testdata (0.4.33 -> 0.4.34)
python-scikit-image (0.21.0 -> 0.22.0)
python-scikit-sound (0.2.3 -> 0.2.12)
python-scipy (1.11.1 -> 1.11.4)
python-seaborn (0.12.2 -> 0.13.0)
python-sgp4 (2.22 -> 2.23)
python-sherpa (4.15.1 -> 4.16.0)
python-shinyutils (3.1.0 -> 12.4.0)
python-sidpy (0.11.2 -> 0.12.1)
python-skyfield (1.45 -> 1.46)
python-soxr (0.3.5 -> 0.3.7)
python-spin (0.7 -> 0.8)
python-spyder-kernels (2.4.4 -> 2.5.0)
python-tables (3.8.0 -> 3.9.1)
python-tifffile (2023.8.30 -> 2023.9.26)
python-traits (6.3.1 -> 6.4.3)
python-unyt (2.9.5 -> 3.0.1)
python-uproot (5.0.13 -> 5.1.2)
python-vispy (0.13.0 -> 0.14.1)
python-visvis (1.13.0 -> 1.14.0)
python-xarray (2023.8.0 -> 2023.11.0)
python-xarray-einstats (0.5.1 -> 0.6.0)
python-yt (4.1.4 -> 4.3.0)
python-zarr (2.16.0 -> 2.16.1)
Needed updates for devel:languages:python:pyramid:
Needed updates for devel:languages:python:pytest:
These packages need to be upgraded:
python-pygments-pytest (2.3.0 -> 2.4.0)
python-pytest-arraydiff (0.5.0 -> 0.6.0)
python-pytest-bdd (5.0.0 -> 7.0.0)
python-pytest-html (4.0.0 -> 4.1.1)
python-pytest-httpx (0.26.0 -> 0.27.0)
python-pytest-mpl (0.12.0 -> 0.16.1)
python-pytest-order (1.1.0 -> 1.2.0)
python-pytest-skip-markers (1.3.0 -> 1.5.0)
python-pytest-testinfra (8.1.0 -> 10.0.0)
python-pytest-translations (4.0.1 -> 5.0.0)
1
0
Welcome to Rocketplay, where innovation meets excitement in the digital cosmos of online entertainment. As a pioneering force in the gaming industry, Rocketplay has redefined the way players experience fun and thrill.
Mission: Elevate Entertainment
Rocketplay's mission is clear – to propel the gaming experience to new heights. By blending cutting-edge technology with a passion for play, Rocketplay offers a dynamic platform where every click takes you on an unforgettable journey.
Diverse Gaming Galaxy
Explore a vast and diverse gaming galaxy at Rocketplay. From classic casino games to immersive, cutting-edge slots, there's something for every type of player. The platform constantly evolves, introducing new games and features to keep the excitement fresh and exhilarating.
Innovation at the Core
At Rocketplay, innovation is not just a feature; it's the essence of our existence. Our developers work tirelessly to introduce groundbreaking features, ensuring that Rocketplay remains at the forefront of the ever-evolving gaming landscape.
User-Friendly Adventure
Rocketplay prides itself on providing a user-friendly adventure. Navigating the platform is seamless, and our commitment to a secure and enjoyable environment ensures that players can focus on what matters most – the thrill of the game.
Community and Beyond
Rocketplay isn't just a platform; it's a community. Connect with fellow gamers, share experiences, and embark on quests together. The Rocketplay experience extends beyond the screen, creating a sense of camaraderie among players.
Safety and Security
Your safety is our priority. Rocketplay employs state-of-the-art security measures to guarantee a secure gaming environment. Play with confidence, knowing that your personal information is safeguarded.
Join us at Rocketplay, where every gaming session is a rocket-fueled adventure into the future of entertainment. Buckle up and get ready to launch into a world where fun knows no limits!
1
0
Good morning,
molecule started failing some days ago:
https://build.opensuse.org/package/show/systemsmanagement:ansible/molecule
Apparently the reason is that pytest (?) is no longer accepting the names used
by the tests:
Examples:
> [ 14s] Duplicate test name 'test_init_calls_setup', found at src/molecule/test/a_unit/command/test_base.py:93 and src/molecule/test/a_unit/test_scenario.py:81
> [ 14s] Test <Function test_command_check[driver/delegated-default-default]> has an id that does not match our safe pattern '^[\w_\-\.]+$' for use with a terminal.
I found no trace of this error message in pytest's code, hence my question, if
someone knows if I can disable these strict checks?
I'll report the issue upstream, so they are aware of potential breakage, but
until then I would like to fix the package...
Sorry if this something obvious, I am not that deep into python and python
packages, so I did not come across this yet... :-)
Kind Regards,
Johannes
--
Johannes Kastl
Linux Consultant & Trainer
Tel.: +49 (0) 151 2372 5802
Mail: kastl(a)b1-systems.de
B1 Systems GmbH
Osterfeldstraße 7 / 85088 Vohburg
http://www.b1-systems.de
GF: Ralph Dehner
Unternehmenssitz: Vohburg / AG: Ingolstadt,HRB 3537
2
2
Non-integrated packages in devel:languages:python:
devel:languages:python/micropython-lib
devel:languages:python/python-RPi.GPIO
devel:languages:python/python-Twiggy
devel:languages:python/python-aio-pika
devel:languages:python/python-aiormq
devel:languages:python/python-anymarkup
devel:languages:python/python-asyncio-pool
devel:languages:python/python-bluepy
devel:languages:python/python-brotlipy
devel:languages:python/python-browsers
devel:languages:python/python-chai
devel:languages:python/python-chess
devel:languages:python/python-cliff
devel:languages:python/python-dash
devel:languages:python/python-editdistance-s
devel:languages:python/python-fangfrisch
devel:languages:python/python-fixedint
devel:languages:python/python-goobook
devel:languages:python/python-icecream
devel:languages:python/python-lastversion
devel:languages:python/python-mkdocs-redirects
devel:languages:python/python-mmllib
devel:languages:python/python-msgfy
devel:languages:python/python-nagiosplugin
devel:languages:python/python-nr.collections
devel:languages:python/python-nr.fs
devel:languages:python/python-nr.metaclass
devel:languages:python/python-nr.pylang.utils
devel:languages:python/python-nr.utils.re
devel:languages:python/python-opentelemetry-instrumentation
devel:languages:python/python-opentelemetry-semantic-conventions
devel:languages:python/python-orangebox
devel:languages:python/python-packageurl-python
devel:languages:python/python-plyer
devel:languages:python/python-preshed
devel:languages:python/python-pylsp-isort
devel:languages:python/python-tabledata
devel:languages:python/python-update_checker
devel:languages:python/python-urllib-gssapi
devel:languages:python/python-vagrant
Packages with diff in devel:languages:python:
devel:languages:python/python-amqpstorm
devel:languages:python/python-bowler
devel:languages:python/python-cloup
devel:languages:python/python-discogs-client
devel:languages:python/python-google-cloud-storage
devel:languages:python/python-lml
devel:languages:python/python-moban
devel:languages:python/python-requests-mock
devel:languages:python/python-scripttest
devel:languages:python/python-trio
Non-integrated packages in devel:languages:python:avocado:
Packages with diff in devel:languages:python:avocado:
devel:languages:python:avocado/python-avocado
Non-integrated packages in devel:languages:python:aws:
devel:languages:python:aws/python-s3fs
Packages with diff in devel:languages:python:aws:
Non-integrated packages in devel:languages:python:azure:
devel:languages:python:azure/python-azure-ai-contentsafety
devel:languages:python:azure/python-azure-appconfiguration-provider
devel:languages:python:azure/python-azure-core-experimental
devel:languages:python:azure/python-azure-defender-easm
devel:languages:python:azure/python-azure-developer-devcenter
devel:languages:python:azure/python-azure-healthinsights-cancerprofiling
devel:languages:python:azure/python-azure-healthinsights-clinicalmatching
devel:languages:python:azure/python-azure-iot-deviceprovisioning
devel:languages:python:azure/python-azure-mgmt-devhub
devel:languages:python:azure/python-azure-monitor-opentelemetry-exporter
Packages with diff in devel:languages:python:azure:
Non-integrated packages in devel:languages:python:certbot:
Packages with diff in devel:languages:python:certbot:
Non-integrated packages in devel:languages:python:django:
devel:languages:python:django/python-django-fsm
devel:languages:python:django/python-django-prometheus
devel:languages:python:django/python-django-pyscss
devel:languages:python:django/python-django-threadedcomments
Packages with diff in devel:languages:python:django:
Non-integrated packages in devel:languages:python:Factory:
devel:languages:python:Factory/pypy3
devel:languages:python:Factory/python313
Packages with diff in devel:languages:python:Factory:
Non-integrated packages in devel:languages:python:flask:
devel:languages:python:flask/python-Flask-Assets
devel:languages:python:flask/python-Flask-OpenTracing
Packages with diff in devel:languages:python:flask:
Non-integrated packages in devel:languages:python:jupyter:
Packages with diff in devel:languages:python:jupyter:
devel:languages:python:jupyter/python-jupyter-server-terminals
Non-integrated packages in devel:languages:python:numeric:
devel:languages:python:numeric/python-hyperspy
devel:languages:python:numeric/python-pomegranate
devel:languages:python:numeric/python-pyvo
Packages with diff in devel:languages:python:numeric:
devel:languages:python:numeric/python-gscholar
devel:languages:python:numeric/python-librosa
devel:languages:python:numeric/python-streamz
Non-integrated packages in devel:languages:python:pyramid:
Packages with diff in devel:languages:python:pyramid:
Non-integrated packages in devel:languages:python:pytest:
Packages with diff in devel:languages:python:pytest:
devel:languages:python:pytest/python-pytest-randomly
1
0
Needed updates for devel:languages:python:
These packages don't seem to be available on PyPI:
ansible
micropython
micropython-lib
preinstallimage-python
python2-pip
python2-pycairo
python2-setuptools
streamdeck-ui
These packages need to be upgraded:
python-Babel (2.12.1 -> 2.13.1)
python-Cycler (0.11.0 -> 0.12.1)
python-Faker (19.10.0 -> 20.0.0)
python-FormEncode (2.0.1 -> 2.1.0)
python-GitPython (3.1.34.1693646983.2a2ae77 -> 3.1.40)
python-Glymur (0.11.3 -> 0.12.8)
python-IMAPClient (2.3.1 -> 3.0.0)
python-Lektor (3.3.7 -> 3.3.10)
python-Logbook (1.6.0 -> 1.7.0.post0)
python-M2Crypto (0.40.0 -> 0.40.1)
python-Mako (1.2.4 -> 1.3.0)
python-Markups (3.0.0 -> 4.0.0)
python-MechanicalSoup (1.2.0 -> 1.3.0)
python-Nuitka (1.8.4 -> 1.8.6)
python-Paste (3.5.3 -> 3.7.1)
python-PasteDeploy (2.1.1+git.1652668078.0f0697d -> 3.0.1)
python-Pillow (10.0.1 -> 10.1.0)
python-Protego (0.2.1 -> 0.3.0)
python-PyAudio (0.2.11 -> 0.2.14)
python-PyAutoGUI (0.9.53 -> 0.9.54)
python-PyGithub (1.57 -> 2.1.1)
python-PyHamcrest (2.0.3 -> 2.1.0)
python-PyICU (2.11 -> 2.12)
python-PyInstaller (5.13.0 -> 6.2.0)
python-PyLaTeX (1.4.1 -> 1.4.2)
python-PyMuPDF (1.21.1 -> 1.23.6)
python-PyPDF2 (2.11.1 -> 3.0.1)
python-PyScreeze (0.1.28 -> 0.1.30)
python-PyTweening (1.0.4 -> 1.0.7)
python-PyWebDAV3 (0.9.14 -> 0.10.0)
python-Pyphen (0.10.0 -> 0.14.0)
python-Pyro5 (5.14 -> 5.15)
python-QDarkStyle (3.0.2 -> 3.2.1)
python-QtAwesome (1.2.1 -> 1.2.3)
python-QtPy (2.4.0 -> 2.4.1)
python-Rtree (0.9.7 -> 1.1.0)
python-SPARQLWrapper (1.8.5 -> 2.0.0)
python-SQLAlchemy (2.0.21 -> 2.0.23)
python-Scrapy (2.7.1 -> 2.11.0)
python-SimpleWebSocketServer (0.1.1 -> 0.1.2)
python-SpeechRecognition (3.8.1 -> 3.10.0)
python-Telethon (1.30.3 -> 1.32.0)
python-Twisted (22.10.0 -> 23.10.0)
python-WSME (0.11.0 -> 0.12.1)
python-WTForms (3.0.1 -> 3.1.1)
python-Wand (0.6.11 -> 0.6.13)
python-ZConfig (3.6.1 -> 4.0)
python-ZEO (5.4.0 -> 5.4.1)
python-ZODB (5.8.0 -> 5.8.1)
python-aenum (3.1.12 -> 3.1.15)
python-aiodataloader (0.2.1 -> 0.4.0)
python-aiodns (3.0.0 -> 3.1.1)
python-aiofiles (23.1.0 -> 23.2.1)
python-aiomisc (17.3.0 -> 17.3.23)
python-aioquic (0.9.21 -> 0.9.22)
python-aiosmtplib (2.0.2 -> 3.0.1)
python-aiostream (0.4.5 -> 0.5.2)
python-alembic (1.12.0 -> 1.12.1)
python-allpairspy (2.5.0 -> 2.5.1)
python-amqp (5.1.1 -> 5.2.0)
python-amqpstorm (2.10.4 -> 2.10.6)
python-annoy (1.17.1 -> 1.17.3)
python-antlr4-python3-runtime (4.9.3 -> 4.13.1)
python-anyio (3.6.2 -> 4.0.0)
python-apsw (3.43.1.0 -> 3.44.0.0)
python-ara (1.6.1 -> 1.7.0)
python-argon2-cffi (21.3.0 -> 23.1.0)
python-arrow (1.2.3 -> 1.3.0)
python-asgiref (3.6.0 -> 3.7.2)
python-asyncpg (0.28.0 -> 0.29.0)
python-atlassian-python-api (2.0.1 -> 3.41.3)
python-atpublic (3.1.1 -> 4.0)
python-audioread (3.0.0 -> 3.0.1)
python-autoflake (1.5.3 -> 2.2.1)
python-av (10.0.0 -> 11.0.0)
python-bincopy (17.14.5 -> 20.0.0)
python-bitarray (2.8.2 -> 2.8.3)
python-bitstring (3.1.9 -> 4.1.2)
python-bitstruct (8.17.0 -> 8.19.0)
python-black (23.10.1 -> 23.11.0)
python-blessed (1.19.1 -> 1.20.0)
python-blinker (1.6.2 -> 1.7.0)
python-boltons (21.0.0 -> 23.1.1)
python-bracex (2.2.1 -> 2.4)
python-branca (0.6.0 -> 0.7.0)
python-buttplug (0.2.0 -> 0.3.0)
python-bytecode (0.15.0 -> 0.15.1)
python-cPyparsing (2.4.7.2.1.2 -> 2.4.7.2.2.3)
python-caldav (0.10.0 -> 1.3.6)
python-catkin-pkg (0.4.24 -> 1.0.0)
python-cattrs (22.2.0 -> 23.1.2)
python-cbor2 (5.4.6 -> 5.5.1)
python-celery (5.2.7 -> 5.3.5)
python-cftime (1.6.2 -> 1.6.3)
python-charset-normalizer (3.3.0 -> 3.3.2)
python-checkdmarc (4.4.1 -> 4.8.5)
python-cheroot (9.0.0 -> 10.0.0)
python-circuitbreaker (1.3.2 -> 2.0.0)
python-ciscoconfparse (1.7.18 -> 1.9.28)
python-cleo (2.0.1 -> 2.1.0)
python-click-aliases (1.0.1 -> 1.0.3)
python-click-default-group (1.2.2 -> 1.2.4)
python-click-didyoumean (0.0.3 -> 0.3.0)
python-cloudpickle (2.2.1 -> 3.0.0)
python-cloudscraper (1.2.58 -> 1.2.71)
python-coconut (1.6.0 -> 3.0.3)
python-colander (1.7.0 -> 2.0)
python-compat-patcher-core (2.1 -> 2.2)
python-confluent-kafka (2.1.1 -> 2.3.0)
python-constantly (15.1.0 -> 23.10.4)
python-construct (2.10.68 -> 2.10.69)
python-coverage (7.3.1 -> 7.3.2)
python-cramjam (2.6.2 -> 2.7.0)
python-cron-descriptor (1.4 -> 1.4.0)
python-croniter (1.4.1 -> 2.0.1)
python-crontab (0.23.0 -> 1.0.1)
python-cssutils (2.7.1 -> 2.9.0)
python-cx_Freeze (6.15.9 -> 6.15.10)
python-daiquiri (3.2.1 -> 3.2.3)
python-databases (0.7.0 -> 0.8.0)
python-ddg3 (0.6.6git~20170824T092521~0ef6b2f -> 0.6.8)
python-ddt (1.6.0 -> 1.7.0)
python-debugpy (1.6.6 -> 1.8.0)
python-deepdiff (6.3.0 -> 6.7.0)
python-derpconf (0.8.3 -> 0.8.4)
python-devpi-client (7.0.1 -> 7.0.2)
python-dictknife (0.13.0 -> 0.14.0)
python-diff-match-patch (20200713 -> 20230430)
python-dill (0.3.6 -> 0.3.7)
python-dj-database-url (1.3.0 -> 2.1.0)
python-djangorestframework-simplejwt (4.6.0 -> 5.3.0)
python-dkimpy (1.0.5 -> 1.1.5)
python-dns-lexicon (3.12.0 -> 3.17.0)
python-docformatter (1.4 -> 1.7.5)
python-docrepr (0.1.1 -> 0.2.0)
python-docstring-to-markdown (0.12 -> 0.13)
python-dpkt (1.9.7.2 -> 1.9.8)
python-dropbox (10.4.1 -> 11.36.2)
python-dynaconf (3.1.11 -> 3.2.4)
python-edgegrid-python (1.2.1 -> 1.3.1)
python-elastic-transport (8.4.0 -> 8.10.0)
python-elasticsearch (8.10.0 -> 8.10.1)
python-email-validator (2.0.0 -> 2.1.0.post1)
python-ephem (4.1.4 -> 4.1.5)
python-et_xmlfile (1.0.1 -> 1.1.0)
python-exceptiongroup (1.1.2 -> 1.1.3)
python-extension-helpers (1.0.0 -> 1.1.0)
python-fake-useragent (1.2.1 -> 1.3.0)
python-fakeredis (2.19.0 -> 2.20.0)
python-fanficfare (4.27.0 -> 4.29.0)
python-fastjsonschema (2.18.0 -> 2.18.1)
python-fedora-messaging (3.2.0 -> 3.4.1)
python-fido2 (1.1.1 -> 1.1.2)
python-filelock (3.12.3 -> 3.13.1)
python-findpython (0.2.5 -> 0.4.0)
python-flake8-builtins (2.1.0 -> 2.2.0)
python-flake8-deprecated (2.0.1 -> 2.2.1)
python-flake8-docstrings (1.6.0 -> 1.7.0)
python-flake8-isort (6.0.0 -> 6.1.1)
python-flake8-pep3101 (2.0.0 -> 2.1.0)
python-flake8-pyi (23.6.0 -> 23.11.0)
python-flexmock (0.10.8 -> 0.11.3)
python-flower (1.1.0 -> 2.0.1)
python-flufl.i18n (4.1.1 -> 5.0.2)
python-flufl.lock (7.1.1 -> 8.0.2)
python-fluidity-sm (0.2.0 -> 0.2.1)
python-flynt (0.78 -> 1.0.1)
python-fontParts (0.11.0 -> 0.12.1)
python-forbiddenfruit (0.1.3 -> 0.1.4)
python-freetype-py (2.3.0 -> 2.4.0)
python-fritzconnection (1.10.3 -> 1.13.2)
python-frozendict (2.3.5 -> 2.3.8)
python-fsspec (2023.9.2 -> 2023.10.0)
python-ftfy (6.0.3 -> 6.1.1)
python-ftputil (3.4 -> 5.0.4)
python-funcy (1.18 -> 2.0)
python-gTTS (2.3.2 -> 2.4.0)
python-gcsfs (2023.9.2 -> 2023.10.0)
python-ged4py (0.1.12 -> 0.4.4)
python-getmac (0.8.3 -> 0.9.4)
python-gevent (23.9.0 -> 23.9.1)
python-geventhttpclient (2.0.9 -> 2.0.11)
python-git-pw (2.4.0 -> 2.5.0)
python-gitdb (4.0.10 -> 4.0.11)
python-glean (1.19.0 -> 1.23.0)
python-glean-parser (6.3.0 -> 10.0.3)
python-glfw (2.5.5 -> 2.6.2)
python-google-api-core (2.12.0 -> 2.14.0)
python-google-api-python-client (2.103.0 -> 2.107.0)
python-google-auth (2.23.2 -> 2.23.4)
python-google-cloud-kms (2.19.1 -> 2.19.2)
python-google-cloud-speech (2.21.0 -> 2.22.0)
python-google-cloud-storage (2.10.0 -> 2.13.0)
python-google-cloud-translate (3.12.0 -> 3.12.1)
python-googleapis-common-protos (1.60.0 -> 1.61.0)
python-gpxpy (1.5.0 -> 1.6.1)
python-graphene (3.2.1 -> 3.3)
python-greenlet (3.0.0 -> 3.0.1)
python-grimoirelab-toolkit (0.3.4 -> 0.4.0)
python-grpc-google-iam-v1 (0.12.4 -> 0.12.7)
python-gspread (5.7.2 -> 5.12.0)
python-gunicorn (20.1.0 -> 21.2.0)
python-gvm-tools (23.4.0 -> 23.10.0)
python-hammett (0.5.0 -> 0.9.4)
python-hanzidentifier (1.1.0 -> 1.2.0)
python-hatch_nodejs_version (0.3.1 -> 0.3.2)
python-hcloud (1.28.0 -> 1.31.0)
python-hijri-converter (2.2.4 -> 2.3.1)
python-hiredis (2.2.2 -> 2.2.3)
python-holidays (0.20 -> 0.36)
python-hsluv (5.0.3 -> 5.0.4)
python-httpcore (0.18.0 -> 1.0.2)
python-httptools (0.5.0 -> 0.6.1)
python-httpx (0.25.0 -> 0.25.1)
python-humanreadable (0.1.0 -> 0.4.0)
python-hunter (3.5.1 -> 3.6.1)
python-hupper (1.10.3 -> 1.12)
python-hvac (1.1.0 -> 2.0.0)
python-hypothesis (6.88.1 -> 6.88.3)
python-icalendar (4.1.0 -> 5.0.11)
python-imagecodecs (2023.3.16 -> 2023.9.18)
python-imageio (2.31.1 -> 2.32.0)
python-imageio-ffmpeg (0.4.8 -> 0.4.9)
python-immutables (0.19 -> 0.20)
python-importlab (0.8 -> 0.8.1)
python-importlib-resources (6.0.1 -> 6.1.1)
python-inflate64 (0.3.1 -> 1.0.0)
python-ini2toml (0.12 -> 0.13)
python-injector (0.20.1 -> 0.21.0)
python-invocations (3.0.2 -> 3.3.0)
python-irc (19.0.1 -> 20.3.0)
python-isbnlib (3.10.12 -> 3.10.14)
python-iso8601 (1.1.0 -> 2.1.0)
python-itemadapter (0.7.0 -> 0.8.0)
python-itemloaders (1.0.6 -> 1.1.0)
python-iwlib (1.6.2 -> 1.7.0)
python-jaraco.classes (3.2.3 -> 3.3.0)
python-jaraco.develop (8.2.0 -> 8.3.0)
python-jaraco.envs (2.4.0 -> 2.6.0)
python-jaraco.functools (3.6.0 -> 4.0.0)
python-jaraco.itertools (6.2.1 -> 6.4.1)
python-jaraco.logging (3.1.2 -> 3.2.0)
python-jaraco.packaging (9.2.0 -> 9.4.0)
python-jaraco.path (3.5.0 -> 3.7.0)
python-jdatetime (4.1.0 -> 4.1.1)
python-jellyfish (0.8.2 -> 1.0.1)
python-jira (3.5.1 -> 3.5.2)
python-joblib (1.2.0 -> 1.3.2)
python-josepy (1.13.0 -> 1.14.0)
python-jsbeautifier (1.14.7 -> 1.14.11)
python-json-rpc (1.14.0 -> 1.15.0)
python-json5 (0.9.13 -> 0.9.14)
python-json_tricks (3.17.1 -> 3.17.3)
python-jsonlines (3.1.0 -> 4.0.0)
python-jsonpatch (1.32 -> 1.33)
python-jsonpickle (3.0.1 -> 3.0.2)
python-jsonpointer (2.3 -> 2.4)
python-jsonref (0.2 -> 1.1.0)
python-jsonschema-spec (0.2.3 -> 0.2.4)
python-junos-eznc (2.6.7 -> 2.6.8)
python-jwcrypto (1.4.2 -> 1.5.0)
python-keyrings.alt (4.2.0 -> 5.0.0)
python-khal (0.10.5 -> 0.11.2)
python-kismet-rest (2019.05.02 -> 2020.5.1)
python-kismetdb (2019.05.05 -> 2021.6.1)
python-kiss-headers (2.3.1 -> 2.4.2)
python-kiwisolver (1.4.4 -> 1.4.5)
python-kmatch (0.4.0 -> 0.5.0)
python-kmod (0.9.1 -> 0.9.2)
python-kombu (5.2.4 -> 5.3.3)
python-langtable (0.0.61 -> 0.0.64)
python-lark (1.1.5 -> 1.1.8)
python-lazy (1.5 -> 1.6)
python-lazy-loader (0.2 -> 0.3)
python-lhafile (0.2.2 -> 0.3.0)
python-libarchive-c (4.0 -> 5.0)
python-libcst (0.4.9 -> 1.1.0)
python-libnacl (1.7.2 -> 2.1.0)
python-libusb1 (3.0.0 -> 3.1.0)
python-license-expression (30.1.0 -> 30.1.1)
python-line_profiler (4.0.3 -> 4.1.2)
python-logging-journald (0.6.5 -> 0.6.6)
python-logilab-common (1.9.8 -> 1.11.0)
python-looseversion (1.1.2 -> 1.3.0)
python-macholib (1.16.2 -> 1.16.3)
python-makefun (1.15.1 -> 1.15.2)
python-markdown-it-py (2.2.0 -> 3.0.0)
python-markdown2 (2.4.6 -> 2.4.10)
python-marshmallow (3.19.0 -> 3.20.1)
python-mbstrdecoder (1.1.2 -> 1.1.3)
python-md2workflow (1.4.18 -> 1.4.19)
python-mdit-py-plugins (0.3.0 -> 0.4.0)
python-mechanize (0.4.8 -> 0.4.9)
python-mediafile (0.11.0 -> 0.12.0)
python-memory_profiler (0.57.0 -> 0.61.0)
python-merge3 (0.0.12 -> 0.0.14)
python-meson-python (0.14.0 -> 0.15.0)
python-methodtools (0.4.2 -> 0.4.7)
python-micropipenv (1.4.5 -> 1.5.2)
python-mimesis (4.0.0 -> 11.1.0)
python-minio (7.1.16 -> 7.2.0)
python-mitmproxy (9.0.1 -> 10.1.3)
python-mkdocs-bootstrap (1.1 -> 1.1.1)
python-more-itertools (9.1.0 -> 10.1.0)
python-msgpack (1.0.5 -> 1.0.7)
python-msgspec (0.18.2 -> 0.18.4)
python-msm (0.8.5 -> 0.9.0)
python-msoffcrypto-tool (4.10.2 -> 5.1.1)
python-mss (7.0.1 -> 9.0.1)
python-munch (3.0.0 -> 4.0.0)
python-murmurhash (1.0.9 -> 1.0.10)
python-mutagen (1.46.0 -> 1.47.0)
python-mutmut (2.0.0 -> 2.4.4)
python-mycli (1.26.1 -> 1.27.0)
python-mypy (1.5.1 -> 1.7.0)
python-mysqlclient (2.1.1 -> 2.2.0)
python-myst-parser (0.17.2 -> 2.0.0)
python-nbxmpp (4.3.3 -> 4.5.2)
python-ncclient (0.6.13 -> 0.6.15)
python-nest-asyncio (1.5.6 -> 1.5.8)
python-netutils (1.4.1 -> 1.6.0)
python-nh3 (0.2.13 -> 0.2.14)
python-nltk (3.8 -> 3.8.1)
python-nocaselist (1.0.6 -> 2.0.0)
python-nodeenv (1.7.0 -> 1.8.0)
python-nose2 (0.12.0 -> 0.14.0)
python-ntc-templates (3.5.0 -> 4.0.1)
python-num2words (0.5.12 -> 0.5.13)
python-objgraph (3.5.0 -> 3.6.0)
python-ogr (0.45.0 -> 0.47.1)
python-oic (1.5.0 -> 1.6.1)
python-oletools (0.60 -> 0.60.1)
python-openai (0.27.8 -> 1.2.3)
python-openapi-core (0.18.1 -> 0.18.2)
python-openapi-spec-validator (0.6.0 -> 0.7.1)
python-opencensus-ext-azure (1.1.6 -> 1.1.11)
python-opentelemetry-api (1.17.0 -> 1.21.0)
python-orjson (3.8.10 -> 3.9.10)
python-ospd-openvas (22.4.5 -> 22.6.1)
python-outcome (1.2.0 -> 1.3.0.post0)
python-overrides (7.3.1 -> 7.4.0)
python-pamela (1.0.0 -> 1.1.0)
python-pan-python (0.16.0 -> 0.22.0)
python-param (2.0.0 -> 2.0.1)
python-parse (1.19.0 -> 1.19.1)
python-parse_type (0.6.1 -> 0.6.2)
python-parsel (1.7.0 -> 1.8.1)
python-parsy (1.3.0 -> 2.1)
python-partd (1.4.0 -> 1.4.1)
python-parver (0.4 -> 0.5)
python-patchy (2.6.0 -> 2.8.0)
python-path (16.6.0 -> 16.7.1)
python-pathvalidate (2.5.2 -> 3.2.0)
python-patiencediff (0.2.12 -> 0.2.14)
python-pbr (5.11.1 -> 6.0.0)
python-pdfminer.six (20200726 -> 20221105)
python-pdm (2.7.4 -> 2.10.1)
python-pdm-backend (2.1.0 -> 2.1.7)
python-pdm-pep517 (1.1.2 -> 1.1.4)
python-pecan (1.4.2 -> 1.5.1)
python-pem (21.2.0 -> 23.1.0)
python-perky (0.5.5 -> 0.9.2)
python-persistent (5.0 -> 5.1)
python-pgmagick (0.7.4 -> 0.7.6)
python-phonenumbers (8.13.18 -> 8.13.24)
python-pikepdf (8.5.2 -> 8.6.0)
python-pingparsing (1.4.0 -> 1.4.1)
python-pip (23.2.1 -> 23.3.1)
python-pip-licenses (4.3.2 -> 4.3.3)
python-pip-run (8.8.2 -> 12.4.0)
python-pipdeptree (2.7.1 -> 2.13.1)
python-platformdirs (3.11.0 -> 4.0.0)
python-platformio (6.1.5 -> 6.1.11)
python-plumbum (1.7.2 -> 1.8.2)
python-pmw (2.0.1 -> 2.1.1)
python-podcastparser (0.6.9 -> 0.6.10)
python-poetry (1.6.1 -> 1.7.0)
python-poetry-core (1.7.0 -> 1.8.1)
python-poetry-plugin-export (1.5.0 -> 1.6.0)
python-polib (1.1.1 -> 1.2.0)
python-pony (0.7.16 -> 0.7.17)
python-pooch (1.7.0 -> 1.8.0)
python-port-for (0.6.2 -> 0.7.2)
python-portalocker (2.7.0 -> 2.8.2)
python-portend (3.1.0 -> 3.2.0)
python-portpicker (1.5.2 -> 1.6.0)
python-precis-i18n (1.0.5 -> 1.1.0)
python-process-tests (2.1.2 -> 3.0.0)
python-prometheus-client (0.17.0 -> 0.18.0)
python-prompt_toolkit (3.0.38 -> 3.0.40)
python-psutil (5.9.5 -> 5.9.6)
python-psycopg (3.1.9 -> 3.1.12)
python-psycopg-c (3.1.9 -> 3.1.12)
python-psycopg-pool (3.1.7 -> 3.2.0)
python-psycopg2 (2.9.7 -> 2.9.9)
python-psygnal (0.9.3 -> 0.9.4)
python-ptpython (3.0.22 -> 3.0.23)
python-ptr (20.2.26 -> 22.7.12)
python-publicsuffixlist (0.9.1 -> 0.10.0.20231109)
python-pudb (2022.1.3 -> 2023.1)
python-pulsectl (22.3.2 -> 23.5.2)
python-py3dns (3.2.1 -> 4.0.0)
python-py7zr (0.20.5 -> 0.20.7)
python-pyOCD (0.22.0 -> 0.36.0)
python-pyOpenSSL (23.2.0 -> 23.3.0)
python-pyacoustid (1.2.2 -> 1.3.0)
python-pyahocorasick (1.4.4 -> 2.0.0)
python-pyaml (21.10.1 -> 23.9.7)
python-pybcj (1.0.1 -> 1.0.2)
python-pycares (4.3.0 -> 4.4.0)
python-pyclipper (1.3.0.post4 -> 1.3.0.post5)
python-pycodestyle (2.11.0 -> 2.11.1)
python-pycryptodome (3.18.0 -> 3.19.0)
python-pycryptodomex (3.18.0 -> 3.19.0)
python-pydantic (1.10.9 -> 2.4.2)
python-pydash (6.0.2 -> 7.0.6)
python-pydata-sphinx-theme (0.14.0 -> 0.14.3)
python-pydicom (2.3.1 -> 2.4.3)
python-pydrive2 (1.10.1 -> 1.17.0)
python-pydyf (0.7.0 -> 0.8.0)
python-pyeapi (0.8.4 -> 1.0.2)
python-pyee (9.0.4 -> 11.0.1)
python-pyelftools (0.29 -> 0.30)
python-pyfakefs (5.2.4 -> 5.3.0)
python-pyfiglet (0.8.post1 -> 1.0.2)
python-pyftpdlib (1.5.7 -> 1.5.9)
python-pygame (2.5.0 -> 2.5.2)
python-pygit2 (1.12.2 -> 1.13.2)
python-pyglet (2.0.9 -> 2.0.10)
python-pyhcl (0.4.4 -> 0.4.5)
python-pyinstaller-hooks-contrib (2023.5 -> 2023.10)
python-pyipp (0.11.0 -> 0.14.4)
python-pyjnius (1.5.0 -> 1.6.1)
python-pykickstart (3.43 -> 3.50)
python-pykka (3.1.1 -> 4.0.1)
python-pylast (4.5.0 -> 5.2.0)
python-pyleri (1.3.3 -> 1.4.2)
python-pylibacl (0.6.0 -> 0.7.0)
python-pylibfdt (1.6.1 -> 1.7.0.post1)
python-pylink-square (1.1.0 -> 1.2.0)
python-pylint (3.0.1 -> 3.0.2)
python-pylint-venv (3.0.2 -> 3.0.3)
python-pylsqpack (0.3.16 -> 0.3.18)
python-pymarc (4.2.2 -> 5.1.0)
python-pymdown-extensions (10.3 -> 10.4)
python-pymetar (1.1 -> 1.4)
python-pymilter (1.0.4 -> 1.0.5)
python-pymisp (2.4.170.2 -> 2.4.178)
python-pymongo (4.3.3 -> 4.6.0)
python-pyocr (0.8.3 -> 0.8.5)
python-pyodbc (4.0.39 -> 5.0.1)
python-pyotp (2.8.0 -> 2.9.0)
python-pyp (1.1.0 -> 3.0.9)
python-pypandoc (1.11 -> 1.12)
python-pyparsing (3.1.0 -> 3.1.1)
python-pyperf (2.5.0 -> 2.6.2)
python-pypi-search (1.2.1 -> 2.0)
python-pypiserver (1.5.2 -> 2.0.1)
python-pyppmd (1.0.0 -> 1.1.0)
python-pypuppetdb (2.5.1 -> 3.2.0)
python-pyramid (2.0.1 -> 2.0.2)
python-pyroma (3.1 -> 4.2)
python-pyroute2 (0.7.3 -> 0.7.9)
python-pyrsistent (0.19.3 -> 0.20.0)
python-pysaml2 (7.2.1 -> 7.4.2)
python-pyscreenshot (3.0 -> 3.1)
python-pyshark (0.4.6 -> 0.6)
python-pysmbc (1.0.23 -> 1.0.25.1)
python-pysol-cards (0.14.2 -> 0.14.3)
python-pyspnego (0.9.2 -> 0.10.2)
python-pystache (0.6.0 -> 0.6.5)
python-pytaglib (1.5.0 -> 2.0.0)
python-python-box (6.1.0 -> 7.1.1)
python-python-crontab (2.7.1 -> 3.0.0)
python-python-daemon (2.3.2 -> 3.0.1)
python-python-dbusmock (0.24.1 -> 0.29.1)
python-python-docs-theme (2023.7 -> 2023.9)
python-python-engineio (4.3.4 -> 4.8.0)
python-python-for-android (2023.2.10 -> 2023.9.16)
python-python-gitlab (3.15.0 -> 4.1.1)
python-python-gnupg (0.5.0 -> 0.5.1)
python-python-gvm (23.5.0 -> 23.10.1)
python-python-jenkins (1.8.0 -> 1.8.2)
python-python-keycloak (2.6.0 -> 3.3.0)
python-python-lsp-server (1.8.2 -> 1.9.0)
python-python-lzo (1.14 -> 1.15)
python-python-mpd2 (3.0.5 -> 3.1.0)
python-python-multipart (0.0.5 -> 0.0.6)
python-python-pam (1.8.4 -> 2.0.2)
python-python-poppler (0.2.2 -> 0.4.1)
python-python-pptx (0.6.21 -> 0.6.23)
python-python-ptrace (0.9.7 -> 0.9.8)
python-python-rapidjson (1.9 -> 1.13)
python-python-slugify (5.0.2 -> 8.0.1)
python-python-socketio (5.7.2 -> 5.10.0)
python-python-socks (2.1.1 -> 2.4.3)
python-python-sql (1.4.0 -> 1.4.2)
python-python-stdnum (1.17 -> 1.19)
python-python-utils (3.4.5 -> 3.8.1)
python-python3-saml (1.15.0 -> 1.16.0)
python-pythonfinder (1.3.1 -> 2.0.6)
python-pytoolconfig (1.2.4 -> 1.2.6)
python-pytools (2022.1.14 -> 2023.1.1)
python-pyupgrade (3.4.0 -> 3.15.0)
python-pyvmomi (7.0.3 -> 8.0.2.0)
python-qcs-api-client (0.21.3 -> 0.23.1)
python-qrcode (7.3.1 -> 7.4.2)
python-quicktions (1.14 -> 1.15)
python-rapidfuzz (2.13.7 -> 3.5.2)
python-rarfile (4.0 -> 4.1)
python-rcssmin (1.1.1 -> 1.1.2)
python-rdflib (6.1.1 -> 7.0.0)
python-readme_renderer (41.0 -> 42.0)
python-readthedocs-sphinx-ext (2.2.2 -> 2.2.3)
python-recordclass (0.18.0.1 -> 0.21)
python-redfish (3.1.8 -> 3.2.1)
python-reedsolo (1.6.0 -> 1.7.0)
python-regex (2023.8.8 -> 2023.10.3)
python-reno (3.5.0 -> 4.0.0)
python-repoze.who (2.4.1 -> 3.0.0)
python-requests-cache (1.0.1 -> 1.1.0)
python-requirements-detector (0.7 -> 1.2.2)
python-requirements-parser (0.2.0 -> 0.5.0)
python-requre (0.8.2 -> 0.8.3)
python-resolvelib (0.8.1 -> 1.0.1)
python-responses (0.23.3 -> 0.24.0)
python-respx (0.20.1 -> 0.20.2)
python-restview (3.0.0 -> 3.0.1)
python-rich (13.5.2 -> 13.6.0)
python-rich-click (1.6.1 -> 1.7.1)
python-rjsmin (1.2.1 -> 1.2.2)
python-robotframework (6.0.1 -> 6.1.1)
python-rope (1.9.0 -> 1.11.0)
python-rpds-py (0.7.1 -> 0.12.0)
python-rpmfile (1.0.4 -> 2.0.0)
python-rpyc (5.3.0 -> 5.3.1)
python-rq (1.15 -> 1.15.1)
python-rstcheck (3.3.1 -> 6.2.0)
python-rt (3.0.7 -> 3.1.3)
python-ruamel.std.pathlib (0.9.2 -> 0.12.0)
python-ruamel.yaml (0.17.35 -> 0.18.5)
python-ruff (0.1.4 -> 0.1.5)
python-schedule (1.1.0 -> 1.2.1)
python-scitokens (1.7.4 -> 1.8.1)
python-screenplain (0.9.0+git.1679319196.353e6c9 -> 0.10.0)
python-securesystemslib (0.21.0 -> 0.30.0)
python-selenium (4.10.0 -> 4.15.2)
python-semver (3.0.1 -> 3.0.2)
python-setproctitle (1.3.2 -> 1.3.3)
python-setuptools (68.1.2 -> 68.2.2)
python-setuptools-declarative-requirements (1.2.0 -> 1.3.0)
python-setuptools-gettext (0.1.1 -> 0.1.7)
python-setuptools-git-versioning (1.13.2 -> 1.13.5)
python-setuptools-rust (1.6.0 -> 1.8.1)
python-setuptools_scm (7.1.0 -> 8.0.4)
python-shellingham (1.5.0 -> 1.5.4)
python-shijian (2020.1.29.1857 -> 2023.10.19.215)
python-shodan (1.28.0 -> 1.30.1)
python-simpleeval (0.9.12 -> 0.9.13)
python-simplejson (3.19.1 -> 3.19.2)
python-single-version (1.5.1 -> 1.6.0)
python-slack-sdk (3.21.3 -> 3.23.0)
python-slixmpp (1.8.3 -> 1.8.4)
python-smbprotocol (1.11.0 -> 1.12.0)
python-smmap (5.0.0 -> 5.0.1)
python-smpplib (2.2.1 -> 2.2.3)
python-social-auth-core (4.4.2 -> 4.5.0)
python-softlayer (6.1.4 -> 6.1.10)
python-sortinghat (0.12.0 -> 0.15.0)
python-sounddevice (0.4.5 -> 0.4.6)
python-sphinx-autodoc-typehints (1.19.2 -> 1.25.2)
python-sphinx-book-theme (0.1.3 -> 1.0.1)
python-sphinx-jsonschema (1.16.8 -> 1.19.1)
python-sphinx-removed-in (0.2.1 -> 0.2.2)
python-sphinx-tabs (3.4.1 -> 3.4.4)
python-sphinx-theme-builder (0.2.0b1 -> 0.2.0b2)
python-sphinxcontrib-pecanwsme (0.10.0 -> 0.11.0)
python-sphinxcontrib-plantuml (0.24.1 -> 0.27)
python-sphinxcontrib-towncrier (0.3.2a0 -> 0.4.0a0)
python-sphinxcontrib-youtube (1.2.0 -> 1.4.1)
python-sphinxext-opengraph (0.7.5 -> 0.9.0)
python-sphobjinv (2.2.2 -> 2.3.1)
python-spotipy (2.22.0 -> 2.23.0)
python-spsdk (1.11.0 -> 2.0.0)
python-spur (0.3.22 -> 0.3.23)
python-sqlglot (7.0.0 -> 19.3.1)
python-sqlite-utils (3.24 -> 3.35.2)
python-sqlite3-to-mysql (2.1.0 -> 2.1.1)
python-sqlitedict (1.6.0 -> 2.1.0)
python-srcinfo (0.1.1 -> 0.1.2)
python-stack-data (0.6.2 -> 0.6.3)
python-starlette (0.31.1 -> 0.32.0.post1)
python-statsd (3.3.0 -> 4.0.1)
python-stestr (4.0.1 -> 4.1.0)
python-streamdeck (0.9.3 -> 0.9.4)
python-strictyaml (1.6.2 -> 1.7.3)
python-stripe (2.63.0 -> 7.4.0)
python-structlog (22.1.0 -> 23.2.0)
python-sure (2.0.0 -> 2.0.1)
python-svglib (1.1.0 -> 1.5.1)
python-sybil (3.0.1 -> 5.0.3)
python-tableauserverclient (0.18.0 -> 0.28)
python-tablib (3.3.0 -> 3.5.0)
python-tabpy (2.5.0 -> 2.9.0)
python-tblib (1.7.0 -> 3.0.0)
python-tcolorpy (0.1.2 -> 0.1.4)
python-tenacity (8.2.2 -> 8.2.3)
python-termcolor (2.1.1 -> 2.3.0)
python-terminaltables (3.1.0 -> 3.1.10)
python-testfixtures (7.0.4 -> 7.2.2)
python-testflo (1.4.9 -> 1.4.13)
python-testtools (2.6.0 -> 2.7.1)
python-textX (3.1.1 -> 4.0.0)
python-textdistance (4.5.0 -> 4.6.0)
python-texttable (1.6.7 -> 1.7.0)
python-thespian (3.10.6 -> 3.10.7)
python-threadpoolctl (3.1.0 -> 3.2.0)
python-thriftpy2 (0.4.16 -> 0.4.17)
python-tinyrpc (1.1.6 -> 1.1.7)
python-tld (0.12.6 -> 0.13)
python-tokenize-rt (5.1.0 -> 5.2.0)
python-tomlkit (0.12.1 -> 0.12.2)
python-toposort (1.7 -> 1.10)
python-towncrier (19.2.0 -> 23.11.0)
python-transaction (3.0.1 -> 3.1.0)
python-transitions (0.8.10 -> 0.9.0)
python-treq (22.2.0 -> 23.11.0)
python-trio-websocket (0.10.3 -> 0.11.1)
python-trove-classifiers (2023.10.18 -> 2023.11.9)
python-ttp (0.9.4 -> 0.9.5)
python-ttp-templates (0.3.2 -> 0.3.5)
python-tweepy (4.9.0 -> 4.14.0)
python-typedload (2.19 -> 2.26)
python-typeguard (4.0.0 -> 4.1.5)
python-typepy (1.3.0 -> 1.3.2)
python-tzlocal (4.3 -> 5.2)
python-u-msgpack-python (2.7.2 -> 2.8.0)
python-ua-parser (0.16.1 -> 0.18.0)
python-ufoLib2 (0.13.1 -> 0.16.0)
python-unearth (0.12.0 -> 0.12.1)
python-unicodedata2 (15.0.0 -> 15.1.0)
python-unidiff (0.7.4 -> 0.7.5)
python-unittest-xml-reporting (3.0.2 -> 3.2.0)
python-unsync (1.3 -> 1.4.0)
python-uri-template (1.2.0 -> 1.3.0)
python-uritools (4.0.0 -> 4.0.2)
python-urlextract (1.7.1 -> 1.8.0)
python-urwid (2.1.2 -> 2.2.3)
python-userpath (1.9.0 -> 1.9.1)
python-uvicorn (0.23.2 -> 0.24.0.post1)
python-uvloop (0.17.0 -> 0.19.0)
python-validate-pyproject (0.13 -> 0.15)
python-vdirsyncer (0.19.0 -> 0.19.2)
python-venusian (3.0.0 -> 3.1.0)
python-versioningit (2.2.0 -> 2.2.1)
python-vine (5.0.0 -> 5.1.0)
python-virtualenv (20.24.5 -> 20.24.6)
python-vncdotool (1.0.0 -> 1.2.0)
python-voluptuous-serialize (2.5.0 -> 2.6.0)
python-vulture (2.1 -> 2.10)
python-w3lib (1.22.0 -> 2.1.2)
python-wasabi (1.1.1 -> 1.1.2)
python-watchfiles (0.19.0 -> 0.21.0)
python-wcmatch (8.4.1 -> 8.5)
python-wcwidth (0.2.6 -> 0.2.9)
python-weasyprint (59.0 -> 60.1)
python-weblate-language-data (2022.9 -> 2023.6)
python-websocket-client (1.5.1 -> 1.6.4)
python-websockets (11.0.3 -> 12.0)
python-websockify (0.10.0 -> 0.11.0)
python-wheel (0.41.2 -> 0.41.3)
python-wheezy.template (3.1.0 -> 3.2.1)
python-whitenoise (6.2.0 -> 6.6.0)
python-wmctrl (0.4 -> 0.5)
python-wrapt (1.15.0 -> 1.16.0)
python-wsaccel (0.6.4 -> 0.6.6)
python-wtf-peewee (3.0.4 -> 3.0.5)
python-xdg (5.1.1 -> 6.0.0)
python-xdoctest (1.1.1 -> 1.1.2)
python-xhtml2pdf (0.2.6 -> 0.2.13)
python-xkcdpass (1.19.3 -> 1.19.5)
python-xmldiff (2.4 -> 2.6.3)
python-xmlschema (2.3.0 -> 2.5.0)
python-xxhash (3.1.0 -> 3.4.1)
python-yacron (0.17.0 -> 0.19.0)
python-yamllint (1.32.0 -> 1.33.0)
python-yamlloader (1.2.2 -> 1.3.2)
python-yapf (0.40.1 -> 0.40.2)
python-yaspin (0.18.0 -> 3.0.1)
python-yattag (1.15.1 -> 1.15.2)
python-zc.lockfile (2.0 -> 3.0.post1)
python-zdaemon (4.4 -> 5.0)
python-zeep (4.1.0 -> 4.2.1)
python-zeroconf (0.56.0 -> 0.122.3)
python-zipp (3.15.0 -> 3.17.0)
python-zodbpickle (2.6 -> 3.1)
python-zope.configuration (4.4.1 -> 5.0)
python-zope.deferredimport (4.4 -> 5.0)
python-zope.exceptions (4.6 -> 5.0.1)
python-zope.hookable (5.4 -> 6.0)
python-zope.i18nmessageid (6.0.1 -> 6.1.0)
python-zope.interface (6.0 -> 6.1)
python-zope.location (4.3 -> 5.0)
python-zope.proxy (4.6.1 -> 5.1)
python-zope.security (6.1 -> 6.2)
python-zope.testrunner (6.0 -> 6.2)
Needed updates for devel:languages:python:avocado:
These packages need to be upgraded:
python-inspektor (0.5.2 -> 0.5.3)
Needed updates for devel:languages:python:aws:
These packages need to be upgraded:
python-aws-sam-translator (1.76.0 -> 1.79.0)
python-aws-xray-sdk (2.12.0 -> 2.12.1)
python-boto3 (1.28.61 -> 1.28.84)
python-botocore (1.31.61 -> 1.31.84)
python-cfn-lint (0.80.4 -> 0.83.1)
python-moto (4.1.13 -> 4.2.8)
python-pynamodb (5.3.4 -> 5.5.0)
Needed updates for devel:languages:python:azure:
These packages need to be upgraded:
python-azure-appconfiguration (1.4.0 -> 1.5.0)
python-azure-datalake-store (0.0.52 -> 0.0.53)
python-azure-mgmt (4.0.0 -> 5.0.0)
python-azure-mgmt-loadtestservice (1.0.0.0 -> 2.0.0)
python-azure-mgmt-quantum (1.0.0b3 -> 1.0.0b4)
python-azure-monitor (0.3.1 -> 0.4.0)
python-azure-schemaregistry-avroserializer (1.0.0b4 -> 1.0.0b4.post1)
python-azure-storage (0.36.0 -> 0.37.0)
python-msal (1.24.1 -> 1.25.0)
Needed updates for devel:languages:python:certbot:
These packages don't seem to be available on PyPI:
certbot-systemd-timer
These packages need to be upgraded:
python-acme (2.7.3 -> 2.7.4)
python-certbot (2.7.3 -> 2.7.4)
python-certbot-apache (2.7.3 -> 2.7.4)
python-certbot-dns-cloudflare (2.7.3 -> 2.7.4)
python-certbot-dns-digitalocean (2.7.3 -> 2.7.4)
python-certbot-dns-dnsimple (2.7.3 -> 2.7.4)
python-certbot-dns-dnsmadeeasy (2.7.3 -> 2.7.4)
python-certbot-dns-google (2.7.3 -> 2.7.4)
python-certbot-dns-linode (2.7.3 -> 2.7.4)
python-certbot-dns-luadns (2.7.3 -> 2.7.4)
python-certbot-dns-nsone (2.7.3 -> 2.7.4)
python-certbot-dns-rfc2136 (2.7.3 -> 2.7.4)
python-certbot-dns-route53 (2.7.3 -> 2.7.4)
python-certbot-nginx (2.7.3 -> 2.7.4)
Needed updates for devel:languages:python:django:
These packages need to be upgraded:
python-crispy-bootstrap4 (2022.1 -> 2023.1)
python-crispy-bootstrap5 (0.7 -> 2023.10)
python-django-auth-ldap (4.0.0 -> 4.6.0)
python-django-axes (5.40.1 -> 6.1.1)
python-django-bootstrap3 (14.2.0 -> 23.4)
python-django-bootstrap4 (21.2 -> 23.2)
python-django-ckeditor (6.6.1 -> 6.7.0)
python-django-classy-tags (3.0.1 -> 4.1.0)
python-django-codemod (1.11.0 -> 2.1.5)
python-django-cors-headers (3.13.0 -> 4.3.0)
python-django-countries (7.2.1 -> 7.5.1)
python-django-crispy-forms (2.0 -> 2.1)
python-django-debug-toolbar (3.6 -> 4.2.0)
python-django-environ (0.4.5 -> 0.11.2)
python-django-filter (23.1 -> 23.3)
python-django-graphql-jwt (0.3.4 -> 0.4.0)
python-django-health-check (3.16.5 -> 3.17.0)
python-django-import-export (2.7.1 -> 3.3.3)
python-django-invitations (1.9.3 -> 2.0.0)
python-django-js-asset (2.0 -> 2.1.0)
python-django-minio-storage (0.5.3 -> 0.5.7)
python-django-money (3.0 -> 3.4.0)
python-django-mptt (0.14 -> 0.15.0)
python-django-oauth-toolkit (1.7.0 -> 2.3.0)
python-django-oidc-provider (0.7.0 -> 0.8.1)
python-django-perf-rec (4.24.0 -> 4.25.0)
python-django-phonenumber-field (5.1.0 -> 7.2.0)
python-django-pipeline (2.0.8 -> 2.1.0)
python-django-polymorphic (3.1 -> 3.1.0)
python-django-push-notifications (3.0.0 -> 3.0.2)
python-django-registration (3.3 -> 3.4)
python-django-requests-debug-toolbar (0.0.5 -> 0.0.6)
python-django-rest-framework-client (0.1.1 -> 0.10.0)
python-django-reversion (5.0.4 -> 5.0.8)
python-django-seed (0.2.2 -> 0.3.1)
python-django-storages (1.13.2 -> 1.14.2)
python-django-taggit (4.0.0 -> 5.0.1)
python-django-timezone-field (5.1 -> 6.0.1)
python-django-treebeard (4.5.1 -> 4.7)
python-django-upgrade (1.14.1 -> 1.15.0)
python-django-widget-tweaks (1.4.8 -> 1.5.0)
python-graphene-django (3.0.0 -> 3.1.5)
python-pytest-django (4.5.2 -> 4.7.0)
python-siphashc (2.1 -> 2.3)
python-social-auth-app-django (5.0.0 -> 5.4.0)
python-swapper (1.1.2.post1 -> 1.3.0)
Needed updates for devel:languages:python:Factory:
These packages don't seem to be available on PyPI:
patterns-devel-python
pypy3
python
python310
python311
python312
python313
python38
python39
shared-python-startup
Needed updates for devel:languages:python:flask:
These packages need to be upgraded:
python-Flask (2.3.3 -> 3.0.0)
python-Flask-Babel (3.1.0 -> 4.0.0)
python-Flask-Caching (1.9.0 -> 2.1.0)
python-Flask-Compress (1.13 -> 1.14)
python-Flask-HTMLmin (2.2.0 -> 2.2.1)
python-Flask-Login (0.6.2 -> 0.6.3)
python-Flask-Mailman (0.3.0 -> 1.0.0)
python-Flask-Migrate (4.0.4 -> 4.0.5)
python-Flask-Security-Too (5.3.0 -> 5.3.2)
python-Flask-SocketIO (5.3.5 -> 5.3.6)
python-Flask-WTF (1.1.1 -> 1.2.1)
python-flask-jwt-extended (4.5.2 -> 4.5.3)
python-flask-oidc (1.4.0 -> 2.1.1)
python-flask-restx (1.1.0 -> 1.2.0)
Needed updates for devel:languages:python:jupyter:
These packages don't seem to be available on PyPI:
jupyter
jupyter-imatlab
jupyter-jupyterlab-latex
jupyter-matlab-kernel
These packages need to be upgraded:
python-anywidget (0.7.0 -> 0.7.1)
python-comm (0.1.4 -> 0.2.0)
python-ipykernel (6.25.2 -> 6.26.0)
python-ipython (8.16.1 -> 8.17.2)
python-jupyter-client (8.4.0 -> 8.6.0)
python-jupyter-collaboration (1.0.0 -> 1.2.0)
python-jupyter-core (5.4.0 -> 5.5.0)
python-jupyter-events (0.7.0 -> 0.9.0)
python-jupyter-server (2.7.3 -> 2.10.0)
python-jupyterlab (4.0.7 -> 4.0.8)
python-jupyterlab-server (2.25.0 -> 2.25.1)
python-nbclient (0.8.0 -> 0.9.0)
python-nbconvert (7.9.2 -> 7.11.0)
python-notebook (7.0.5 -> 7.0.6)
python-papermill (2.4.0 -> 2.5.0)
python-qtconsole (5.4.4 -> 5.5.0)
python-terminado (0.17.1 -> 0.18.0)
python-traitlets (5.11.2 -> 5.13.0)
python-ypy-websocket (0.8.4 -> 0.12.4)
Needed updates for devel:languages:python:numeric:
These packages need to be upgraded:
python-GooseMPL (0.12.1 -> 0.14.0)
python-GridDataFormats (1.0.1 -> 1.0.2)
python-PsyLab (0.4.7.12 -> 1.0.6)
python-XlsxWriter (3.0.3 -> 3.1.9)
python-agate-excel (0.2.5 -> 0.4.0)
python-agate-sql (0.5.9 -> 0.7.0)
python-agate-stats (0.4.0 -> 0.4.1)
python-altair (5.1.1 -> 5.1.2)
python-apptools (5.2.0 -> 5.2.1)
python-arf (2.6.1 -> 2.6.4)
python-asdf (2.15.2 -> 3.0.1)
python-asdf-coordinates-schemas (0.1.0 -> 0.2.0)
python-asdf-transform-schemas (0.3.0 -> 0.4.0)
python-asdf-wcs-schemas (0.1.1 -> 0.2.0)
python-awkward (2.4.5 -> 2.4.10)
python-awkward-cpp (24 -> 25)
python-blosc2 (2.2.9 -> 2.3.1)
python-bokcolmaps (2.0.1 -> 3.1.2)
python-bokeh (3.3.0 -> 3.3.1)
python-cdflib (0.3.20 -> 1.2.3)
python-cluster (1.4.1.post2 -> 1.4.1.post3)
python-contourpy (1.0.7 -> 1.2.0)
python-csvkit (1.1.1 -> 1.3.0)
python-dash (2.6.2 -> 2.14.1)
python-dask (2023.9.1 -> 2023.11.0)
python-deap (1.3.1 -> 1.4.1)
python-distributed (2023.9.1 -> 2023.11.0)
python-dtaidistance (2.3.10 -> 2.3.11)
python-envisage (6.1.1 -> 7.0.3)
python-ezdxf (0.16.3 -> 1.1.2)
python-fabio (0.14.0 -> 2023.10.0)
python-fastparquet (2023.7.0 -> 2023.10.1)
python-fastremap (1.13.5 -> 1.14.0)
python-finance_enums (0.1.0 -> 0.3.0)
python-folium (0.14.0 -> 0.15.0)
python-girder-client (3.1.20 -> 3.1.24)
python-gsw (3.6.16 -> 3.6.17)
python-gwcs (0.18.3 -> 0.19.0)
python-h5netcdf (1.2.0 -> 1.3.0)
python-h5py (3.9.0 -> 3.10.0)
python-hepunits (2.0.1 -> 2.3.2)
python-holoviews (1.17.1 -> 1.18.1)
python-hvplot (0.8.4 -> 0.9.0)
python-jplephem (2.15 -> 2.19)
python-kwant (1.4.3 -> 1.4.4)
python-lfdfiles (2023.4.20 -> 2023.9.26)
python-llvmlite (0.40.0 -> 0.41.1)
python-matplotlib (3.6.3 -> 3.8.1)
python-mizani (0.8.1 -> 0.10.0)
python-mpi4py (3.1.4 -> 3.1.5)
python-mpl-animators (1.0.1 -> 1.1.0)
python-ndindex (1.6 -> 1.7)
python-ndtiff (1.12.0 -> 2.2.1)
python-netCDF4 (1.6.4 -> 1.6.5)
python-netpbmfile (2020.10.18 -> 2023.8.30)
python-networkx (3.1 -> 3.2.1)
python-nibabel (4.0.2 -> 5.1.0)
python-nilearn (0.10.1 -> 0.10.2)
python-npTDMS (1.2.0 -> 1.7.1)
python-nptyping (2.4.1 -> 2.5.0)
python-numba (0.57.1 -> 0.58.1)
python-numcodecs (0.11.0 -> 0.12.1)
python-numexpr (2.8.4 -> 2.8.7)
python-numpydoc (1.5.0 -> 1.6.0)
python-o2sclpy (0.926 -> 0.928)
python-oct2py (5.0.4 -> 5.6.0)
python-oiffile (2022.9.29 -> 2023.8.30)
python-openpyxl (3.0.10 -> 3.1.2)
python-orange-canvas-core (0.1.18 -> 0.1.35)
python-orange-widget-base (4.11.0 -> 4.22.0)
python-palettable (3.3.0 -> 3.3.3)
python-pandas (2.1.1 -> 2.1.3)
python-panel (1.3.0 -> 1.3.1)
python-plotly (5.14.1 -> 5.18.0)
python-praatio (4.1.0 -> 6.1.0)
python-psychtoolbox (3.0.16 -> 3.0.19.0)
python-pyUSID (0.0.10.post2 -> 0.0.11)
python-pyarrow (13.0.0 -> 14.0.1)
python-pyemd (0.5.1 -> 1.0.0)
python-pyquil (3.5.2 -> 4.0.3)
python-pyreadstat (1.2.3 -> 1.2.4)
python-pyssim (0.6 -> 0.7)
python-python-pseudorandom (0.2.2 -> 0.3.2)
python-pythran (0.13.1 -> 0.14.0)
python-pyviz-comms (2.2.1 -> 3.0.0)
python-pyzo (4.11.2 -> 4.12.7)
python-quimb (1.4.2 -> 1.6.0)
python-reportlab (4.0.5 -> 4.0.7)
python-reproject (0.9.1 -> 0.12.0)
python-roifile (2020.11.28 -> 2023.8.30)
python-roman (3.3 -> 4.1)
python-rpcq (3.10.0 -> 3.11.0)
python-rpy2 (3.4.4 -> 3.5.14)
python-scikit-build-core (0.4.7 -> 0.6.1)
python-scikit-dsp-comm (1.2.0 -> 2.0.3)
python-scikit-hep-testdata (0.4.33 -> 0.4.34)
python-scikit-image (0.21.0 -> 0.22.0)
python-scikit-sound (0.2.3 -> 0.2.12)
python-scipy (1.11.1 -> 1.11.3)
python-seaborn (0.12.2 -> 0.13.0)
python-sgp4 (2.22 -> 2.23)
python-sherpa (4.15.1 -> 4.16.0)
python-shinyutils (3.1.0 -> 12.4.0)
python-sidpy (0.11.2 -> 0.12.1)
python-skyfield (1.45 -> 1.46)
python-soxr (0.3.5 -> 0.3.7)
python-spyder-kernels (2.4.4 -> 2.5.0)
python-tables (3.8.0 -> 3.9.1)
python-tifffile (2023.8.30 -> 2023.9.26)
python-traits (6.3.1 -> 6.4.3)
python-traitsui (7.2.1 -> 8.0.0)
python-unyt (2.9.5 -> 3.0.1)
python-uproot (5.0.13 -> 5.1.2)
python-vispy (0.13.0 -> 0.14.1)
python-visvis (1.13.0 -> 1.14.0)
python-xarray (2023.8.0 -> 2023.10.1)
python-xarray-einstats (0.5.1 -> 0.6.0)
python-yt (4.1.4 -> 4.3.0)
python-zarr (2.16.0 -> 2.16.1)
Needed updates for devel:languages:python:pyramid:
Needed updates for devel:languages:python:pytest:
These packages need to be upgraded:
python-pygments-pytest (2.3.0 -> 2.4.0)
python-pytest-bdd (5.0.0 -> 7.0.0)
python-pytest-html (4.0.0 -> 4.1.1)
python-pytest-mpl (0.12.0 -> 0.16.1)
python-pytest-skip-markers (1.3.0 -> 1.5.0)
python-pytest-testinfra (8.1.0 -> 9.0.0)
python-pytest-translations (4.0.1 -> 5.0.0)
python-pytest-xdist (3.3.1 -> 3.4.0)
1
0
Hello,
trough a hackweek project:
https://hackweek.opensuse.org/23/projects/python-modules-mass-update
there are some version updates of python modules proposed in
home:pgajdos:python. Temporarily, until better process is found,
if you are considering to update a python module, you can eventually
take it from there as a base for your submission.
Petr
--
Have a lot of fun..
2
3
Hi,
I get build failures since Werkzeug 3:
[ 18s] E ImportError: cannot import name 'url_quote' from 'werkzeug.urls' (/usr/lib/python3.11/site-packages/werkzeug/urls.py)
Full log:
https://build.opensuse.org/build/devel:languages:python/openSUSE_Tumbleweed…
Is url_quote moved to a different package?
Thanks
Axel
2
1
Non-integrated packages in devel:languages:python:
devel:languages:python/micropython-lib
devel:languages:python/python-RPi.GPIO
devel:languages:python/python-Twiggy
devel:languages:python/python-aio-pika
devel:languages:python/python-aiormq
devel:languages:python/python-anymarkup
devel:languages:python/python-asyncio-pool
devel:languages:python/python-bluepy
devel:languages:python/python-brotlipy
devel:languages:python/python-browsers
devel:languages:python/python-chai
devel:languages:python/python-chess
devel:languages:python/python-cliff
devel:languages:python/python-dash
devel:languages:python/python-editdistance-s
devel:languages:python/python-fangfrisch
devel:languages:python/python-fixedint
devel:languages:python/python-goobook
devel:languages:python/python-icecream
devel:languages:python/python-lastversion
devel:languages:python/python-mkdocs-redirects
devel:languages:python/python-mmllib
devel:languages:python/python-msgfy
devel:languages:python/python-nagiosplugin
devel:languages:python/python-nr.collections
devel:languages:python/python-nr.fs
devel:languages:python/python-nr.metaclass
devel:languages:python/python-nr.pylang.utils
devel:languages:python/python-nr.utils.re
devel:languages:python/python-opentelemetry-instrumentation
devel:languages:python/python-opentelemetry-semantic-conventions
devel:languages:python/python-orangebox
devel:languages:python/python-packageurl-python
devel:languages:python/python-plyer
devel:languages:python/python-preshed
devel:languages:python/python-pylsp-isort
devel:languages:python/python-tabledata
devel:languages:python/python-update_checker
devel:languages:python/python-urllib-gssapi
devel:languages:python/python-vagrant
Packages with diff in devel:languages:python:
devel:languages:python/python-amqpstorm
devel:languages:python/python-bowler
devel:languages:python/python-cloup
devel:languages:python/python-discogs-client
devel:languages:python/python-google-cloud-storage
devel:languages:python/python-lml
devel:languages:python/python-moban
devel:languages:python/python-mocket
devel:languages:python/python-redis
devel:languages:python/python-requests-mock
devel:languages:python/python-scripttest
devel:languages:python/python-trio
Non-integrated packages in devel:languages:python:avocado:
Packages with diff in devel:languages:python:avocado:
devel:languages:python:avocado/python-avocado
Non-integrated packages in devel:languages:python:aws:
devel:languages:python:aws/python-s3fs
Packages with diff in devel:languages:python:aws:
Non-integrated packages in devel:languages:python:azure:
devel:languages:python:azure/python-azure-ai-contentsafety
devel:languages:python:azure/python-azure-appconfiguration-provider
devel:languages:python:azure/python-azure-core-experimental
devel:languages:python:azure/python-azure-defender-easm
devel:languages:python:azure/python-azure-developer-devcenter
devel:languages:python:azure/python-azure-healthinsights-cancerprofiling
devel:languages:python:azure/python-azure-healthinsights-clinicalmatching
devel:languages:python:azure/python-azure-iot-deviceprovisioning
devel:languages:python:azure/python-azure-mgmt-devhub
devel:languages:python:azure/python-azure-monitor-opentelemetry-exporter
Packages with diff in devel:languages:python:azure:
Non-integrated packages in devel:languages:python:certbot:
Packages with diff in devel:languages:python:certbot:
devel:languages:python:certbot/python-acme
devel:languages:python:certbot/python-certbot
devel:languages:python:certbot/python-certbot-apache
devel:languages:python:certbot/python-certbot-dns-cloudflare
devel:languages:python:certbot/python-certbot-dns-digitalocean
devel:languages:python:certbot/python-certbot-dns-dnsimple
devel:languages:python:certbot/python-certbot-dns-dnsmadeeasy
devel:languages:python:certbot/python-certbot-dns-google
devel:languages:python:certbot/python-certbot-dns-linode
devel:languages:python:certbot/python-certbot-dns-luadns
devel:languages:python:certbot/python-certbot-dns-nsone
devel:languages:python:certbot/python-certbot-dns-rfc2136
devel:languages:python:certbot/python-certbot-dns-route53
devel:languages:python:certbot/python-certbot-nginx
Non-integrated packages in devel:languages:python:django:
devel:languages:python:django/python-django-fsm
devel:languages:python:django/python-django-prometheus
devel:languages:python:django/python-django-pyscss
devel:languages:python:django/python-django-threadedcomments
Packages with diff in devel:languages:python:django:
Non-integrated packages in devel:languages:python:Factory:
devel:languages:python:Factory/pypy3
devel:languages:python:Factory/python313
Packages with diff in devel:languages:python:Factory:
Non-integrated packages in devel:languages:python:flask:
devel:languages:python:flask/python-Flask-Assets
devel:languages:python:flask/python-Flask-OpenTracing
Packages with diff in devel:languages:python:flask:
Non-integrated packages in devel:languages:python:jupyter:
Packages with diff in devel:languages:python:jupyter:
Non-integrated packages in devel:languages:python:numeric:
devel:languages:python:numeric/python-hyperspy
devel:languages:python:numeric/python-pomegranate
devel:languages:python:numeric/python-pyvo
Packages with diff in devel:languages:python:numeric:
devel:languages:python:numeric/python-datashader
devel:languages:python:numeric/python-gscholar
devel:languages:python:numeric/python-librosa
devel:languages:python:numeric/python-streamz
Non-integrated packages in devel:languages:python:pyramid:
Packages with diff in devel:languages:python:pyramid:
Non-integrated packages in devel:languages:python:pytest:
Packages with diff in devel:languages:python:pytest:
1
0