You are not logged in.
Hello. I apologize if this is posted in the wrong place, it's really tricky.
I instalkled python-flask-mail [0.10.0-2], but when I import the flask_mail module. it doesn't find it.
The files in the package are REALLY STRANGE
$ pacman -Ql python-flask-mail
python-flask-mail /usr/
python-flask-mail /usr/lib/
python-flask-mail /usr/lib/python3.14/
python-flask-mail /usr/lib/python3.14/site-packages/
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail-0.10.0.dist-info/
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail-0.10.0.dist-info/METADATA
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail-0.10.0.dist-info/RECORD
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail-0.10.0.dist-info/WHEEL
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail-0.10.0.dist-info/licenses/
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail-0.10.0.dist-info/licenses/LICENSE.txt
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail/
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail/__init__.py
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail/__pycache__/
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail/__pycache__/__init__.cpython-314.opt-1.pyc
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail/__pycache__/__init__.cpython-314.pyc
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail/py.typed
python-flask-mail /usr/share/
python-flask-mail /usr/share/doc/
python-flask-mail /usr/share/doc/python-flask-mail/
python-flask-mail /usr/share/doc/python-flask-mail/CHANGES.md
python-flask-mail /usr/share/doc/python-flask-mail/README.md
python-flask-mail /usr/share/doc/python-flask-mail/api.md
python-flask-mail /usr/share/doc/python-flask-mail/changes.md
python-flask-mail /usr/share/doc/python-flask-mail/conf.py
python-flask-mail /usr/share/doc/python-flask-mail/index.md
python-flask-mail /usr/share/doc/python-flask-mail/license.md
python-flask-mail /usr/share/licenses/
python-flask-mail /usr/share/licenses/python-flask-mail/
python-flask-mail /usr/share/licenses/python-flask-mail/LICENSE.txt.
In details, there is this
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail/__init__.py that contains all the methods and routines the module shall have (Message, Mail, etc).
I tried to see if following this manpage something could be done, but it's really difficult. From some point of view an "easy" solution would be to rename the file, move it inside the python path and it will work (and broke the system). What is suggested to do in this case?
Thank you for your time
P.S. the Package is not flagged and the module isn't available with pipx install.
Offline
The files in the package are REALLY STRANGE
What would you say is strange about it (ignoring the usual python/flask things)?
but when I import the flask_mail module. it doesn't find it.
Please don't paraphrase, https://bbs.archlinux.org/viewtopic.php?id=57855
What does you code actually look like and what is the exact and complete error?
from flask import Flask
from flask_mail import Mail
doesn't work?
Online
Sorry about that (and thank you for the fast answer). What I mean is:
doesn't work?
No, it doesn't.
If I type
#!/usr/bin/env python3
#
import sys
from flask import Flask
from flask_mail import Mail
def main(args):
app = Flask(__name__)
mail = Mail(app)
return 0
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))it returns
File "/tmp/prova.py", line 6, in <module>
from flask_mail import Mail
ModuleNotFoundError: No module named 'flask_mailbut if I rename the python-flask-mail /usr/lib/python3.14/site-packages/flask_mail/__init__.py to flask_mail.py and move it in the same directory, the results executes without problems. This means it works and there is just an installation problem. After that if I change the code to
#!/usr/bin/env python3
#
import sys
from flask import Flask
from flask_mail import Mail, Message
app = Flask(__name__)
mail = Mail(app)
@app.route("/")
def index():
msg = Message("Hello",
sender="from@example.com",
recipients=["to@example.com"])
msg.html = "<b>testing</b>"
mail.send(msg)
def main(args):
print("Main is running")
app.run()
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))The server run, but when I open the page on 127.0.0.1:5000 it says
[2026-02-17 11:18:48,085] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "/usr/lib/python3.13/site-packages/flask/app.py", line 1511, in wsgi_app
response = self.full_dispatch_request()
File "/usr/lib/python3.13/site-packages/flask/app.py", line 919, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/usr/lib/python3.13/site-packages/flask/app.py", line 917, in full_dispatch_request
rv = self.dispatch_request()
File "/usr/lib/python3.13/site-packages/flask/app.py", line 902, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
File "/tmp/prova.py", line 17, in index
mail.send(msg)
~~~~~~~~~^^^^^
File "/tmp/flask_mail.py", line 539, in send
with self.connect() as connection:
~~~~~~~~~~~~^^
File "/tmp/flask_mail.py", line 127, in __enter__
self.host = self.configure_host()
~~~~~~~~~~~~~~~~~~~^^
File "/tmp/flask_mail.py", line 144, in configure_host
host = smtplib.SMTP(self.mail.server, self.mail.port)
File "/usr/lib/python3.13/smtplib.py", line 264, in __init__
(code, msg) = self.connect(host, port)
~~~~~~~~~~~~^^^^^^^^^^^^
File "/usr/lib/python3.13/smtplib.py", line 350, in connect
self.sock = self._get_socket(host, port, self.timeout)
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.13/smtplib.py", line 321, in _get_socket
return socket.create_connection((host, port), timeout,
~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^
self.source_address)
^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.13/socket.py", line 864, in create_connection
raise exceptions[0]
File "/usr/lib/python3.13/socket.py", line 849, in create_connection
sock.connect(sa)
~~~~~~~~~~~~^^^^
ConnectionRefusedError: [Errno 111] Connection refusedthis must be my fault, because I don't know how to start the smtp server I have on this machine
Offline
/usr/lib/python3.13/site-packages/flask/app.py
Smells like a partial upgrade. Python 3 is at 3.14.
$ type -a python3
$ pacman -Qi python python-flask python-flask-mailhttps://wiki.archlinux.org/title/System … nsupported
Or are you still running ArchBang?
Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD
Making lemonade from lemons since 2015.
Offline
Or are you still running ArchBang?
Guilty as charged, Sir (yes).
edit: my bad. THE PREVIOUS LAPTOP had Archbang, I was mistaken. This is pure Arch as I recall
$ type -a python3
python3 è /usr/bin/python3$ pacman -Qi python python-flask python-flask-mail
Nome : python
Versione : 3.13.11-1
Descrizione : The Python programming language
Architettura : x86_64
URL : https://www.python.org/
Licenze : PSF-2.0
Gruppi : Nessuno
Fornisce : python3 python-externally-managed
Dipenda da : bzip2 expat gdbm libffi libnsl libxcrypt openssl zlib tzdata
mpdecimal
Dipendenze opzionali : python-setuptools: for building Python packages using tooling that is
usually bundled with Python [installato]
python-pip: for installing Python packages using tooling that is
usually bundled with Python [installato]
python-pipx: for installing Python software not packaged on Arch
Linux [installato]
sqlite: for a default database integration [installato]
xz: for lzma [installato]
tk: for tkinter [installato]
Richiesto da : adios2 anari-sdk apparmor audacity autopep8 breezy cython0
eclipse-pydev eez-studio-appimage esptool gdb gdb-common
geany-plugins glib2-devel gobject-introspection gpsd gtk-doc
jupyter-nbclient jupyter-nbconvert jupyter-nbformat
jupyter-notebook jupyter-notebook-shim jupyter-server jupyterlab
jupyterthemes kicad kitty kitty-shell-integration libixion
liborcus libreoffice-fresh med mercurial meson
paraview-catalyst pyinstaller-hooks-contrib pyside6
python-aiohappyeyeballs python-aiohttp python-aiosignal
python-annotated-types python-anyio python-argcomplete
python-argon2-cffi python-argon2-cffi-bindings python-arrow
python-asgiref python-astroid python-asttokens python-async-lru
python-atomicwrites python-attrs python-autocommand python-babel
python-bcrypt python-beautifulsoup4 python-binaryornot
python-bitarray python-bitstring python-black python-blinker
python-boolean.py python-branca python-build python-cachecontrol
python-cachy python-catalogue python-certifi python-chardet
python-charset-normalizer python-click python-cloudpickle
python-colorama python-comm python-confection python-configobj
python-contourpy python-cookiecutter python-crashtest
python-cryptography python-cycler python-cymem python-debian
python-debugpy python-decorator python-defusedxml
python-deprecated python-diff-match-patch python-dill
python-distlib python-distro python-django
python-django-crispy-forms python-docstring-to-markdown
python-docutils python-editables python-entrypoints
python-et-xmlfile python-executing python-fastbencode
python-fastjsonschema python-filelock python-filetype
python-findpython python-flake8 python-flask python-flask-mail
python-flexcache python-flexparser python-flit-core
python-fluidity python-folium python-fonttools python-fqdn
python-frozenlist python-gobject python-greenlet python-h11
python-hatchling python-hpack python-httpcore python-httpx
python-hyperframe python-idna python-imagesize python-inflect
python-inflection python-iniconfig python-installer
python-intelhex python-invoke python-ipykernel python-isoduration
python-isort python-itsdangerous python-jaraco.classes
python-jaraco.collections python-jaraco.context
python-jaraco.functools python-jaraco.text python-jedi
python-jeepney python-jellyfish python-jinja python-jiter
python-joblib python-json-logger python-json5 python-jsonpointer
python-jsonschema python-jsonschema-specifications
python-jupyter-client python-jupyter-core python-jupyter-events
python-jupyterlab-server python-keyring python-kivy-garden-mapview
python-kiwisolver python-lark-parser python-legacy-cgi
python-levenshtein python-lexicon python-license-expression
python-llvmlite python-lockfile python-lxml
python-lxml-html-clean python-mako python-markdown
python-markupsafe python-materialyoucolor-git python-matplotlib
python-mccabe python-mdurl python-merge3 python-mistune
python-mock python-more-itertools python-mpi4py python-msgpack
python-multidict python-murmurhash python-mypy_extensions
python-nest-asyncio python-numba python-numpy python-openai
python-openpyxl python-outcome python-packaging
python-pandocfilters python-parso python-pathspec
python-patiencediff python-pbs-installer python-pdf2image
python-pefile python-pexpect python-pickleshare python-pillow
python-pint python-pip python-pipx python-pivy python-pkginfo
python-platformdirs python-playwright python-pluggy python-ply
python-plyer python-poetry python-poetry-core python-pooch
python-preshed python-prometheus_client python-prompt_toolkit
python-propcache python-psutil python-ptyprocess python-pure-eval
python-pyaudio python-pycodestyle python-pycparser
python-pydantic python-pydantic-core python-pyelftools
python-pyflakes python-pygame python-pygments python-pyjwt
python-pylint python-pylint-venv python-pymsgbox python-pynacl
python-pyopenssl python-pyparsing python-pypdf python-pyperclip
python-pyproject-hooks python-pyqt6-sip python-pyqt6-webengine
python-pyserial python-pysimplegui python-pytokens
python-pytoolconfig python-pyttsx3 python-pytweening python-pytz
python-pyuca python-pyxdameraulevenshtein python-pyxdg
python-pyzmq python-rapidfuzz python-reedsolo python-referencing
python-regex python-rfc3987 python-rich-click
python-roman-numerals-py python-rpds-py python-rtree
python-ruamel.yaml.clib python-scipy python-selectolax
python-selenium python-send2trash python-setuptools
python-shellingham python-shiboken2 python-six python-sniffio
python-snowballstemmer python-sortedcontainers python-soupsieve
python-spacy-loggers python-sphinx-alabaster-theme
python-sphinxcontrib-applehelp python-sphinxcontrib-devhelp
python-sphinxcontrib-htmlhelp python-sphinxcontrib-qthelp
python-sphinxcontrib-serializinghtml python-spyder-kernels
python-sqlparse python-stop-words python-superqt python-tabulate
python-testpath python-text-unidecode python-threadpoolctl
python-tomli python-tomlkit python-tornado python-tqdm
python-traitlets python-trio python-trio-websocket
python-trove-classifiers python-types-python-dateutil
python-typing-inspection python-typing_extensions python-ujson
python-uri-template python-urllib3 python-userpath
python-vadersentiment python-virtualenv python-wasabi
python-watchdog python-wcwidth python-webcolors
python-webencodings python-websocket-client python-websockets
python-werkzeug python-whatthepatch python-wheel python-wrapt
python-wurlitzer python-wxpython python-xyzservices python-yaml
python-yarl python-zipp reuse sdkmanager shiboken6 smbclient
sphinxbase spyder vapoursynth virtualbox yapf youtube-dl
yt-dlp
Opzionale per : android-tools boost btrfs-progs cifs-utils clang git graphviz
gstreamer gtest gtk2 gupnp imath iproute2 ldb lensfun
libcaca libevent libftdi libieee1284 libimobiledevice libnewt
libplist libpwquality libxml2 libxslt lirc net-snmp onetbb
pcsclite rsync shiboken6 subversion talloc tdb tevent
texlive-binextra usbutils util-linux-libs vtk
Conflitti con : Nessuno
Sostituisce : python3 python-externally-managed
Spazio richiesto : 67,66 MiB
Pacchettizzatore : Jelle van der Waa <jelle@archlinux.org>
Data di creazione : dom 7 dic 2025, 14:01:45
Data di installazione : gio 18 dic 2025, 02:04:24
Motivo dell'installazione : Installato come dipendenza di un altro pacchetto
Script di install : No
Convalidato da : Firma
Nome : python-flask
Versione : 3.1.2-1
Descrizione : Micro webdevelopment framework for Python
Architettura : any
URL : https://flask.palletsprojects.com/
Licenze : BSD-3-Clause
Gruppi : Nessuno
Fornisce : Nessuno
Dipenda da : python python-blinker python-click python-itsdangerous
python-jinja python-markupsafe python-werkzeug
Dipendenze opzionali : python-asgiref: async functions and views [installato]
python-cryptography: using ad-hoc certificates [installato]
python-dotenv: loading env vars from files [installato]
Richiesto da : python-flask-mail
Opzionale per : Nessuno
Conflitti con : Nessuno
Sostituisce : Nessuno
Spazio richiesto : 1055,43 KiB
Pacchettizzatore : Carl Smedstad <carsme@archlinux.org>
Data di creazione : ven 22 ago 2025, 08:34:58
Data di installazione : mer 22 ott 2025, 01:01:18
Motivo dell'installazione : Installato esplicitamente
Script di install : No
Convalidato da : Firma
Nome : python-flask-mail
Versione : 0.10.0-2
Descrizione : Flask extension providing simple email sending capabilities
Architettura : any
URL : https://github.com/pallets-eco/flask-mail/
Licenze : BSD-3-Clause
Gruppi : Nessuno
Fornisce : Nessuno
Dipenda da : python python-blinker python-flask
Dipendenze opzionali : Nessuno
Richiesto da : Nessuno
Opzionale per : Nessuno
Conflitti con : Nessuno
Sostituisce : Nessuno
Spazio richiesto : 108,03 KiB
Pacchettizzatore : Jelle van der Waa <jelle@archlinux.org>
Data di creazione : lun 15 dic 2025, 18:07:51
Data di installazione : mar 17 feb 2026, 01:08:43
Motivo dell'installazione : Installato esplicitamente
Script di install : No
Convalidato da : Nessunohttps://wiki.archlinux.org/title/System … nsupported
I am not so sure the system is up to date, but I Never use pacman -Sy
Last edited by ElMastro (2026-02-17 22:32:51)
Offline
@WorMzy, it seems you are right. One problem is:
python-3.14.3-1
python-aiohappyeyeballs-2.6.1-4 python-aiohttp-3.13.3-1
python-aiosignal-1.4.0-3 python-annotated-doc-0.0.4-2
python-annotated-types-0.7.0-3 python-anyio-4.12.1-1
python-argcomplete-3.6.2-2 python-argon2-cffi-25.1.0-2
python-argon2-cffi-bindings-25.1.0-2 python-arrow-1.4.0-2
python-asgiref-3.11.1-1 python-astroid-4.0.3-2 python-asttokens-3.0.1-1
python-async-lru-2.1.0-1 python-asyncssh-2.21.1-2 python-atomicwrites-1.4.1-6
python-attrs-25.4.0-3 python-autocommand-2.2.2-9 python-babel-2.17.0-3
python-bcrypt-5.0.0-2 python-beautifulsoup4-4.14.3-2
python-binaryornot-0.4.4-12 python-bitarray-3.8.0-2 python-bitstring-4.3.1-2
python-black-26.1.0-1 python-bleach-6.3.0-2 python-blinker-1.9.0-4
python-boolean.py-5.0-2 python-build-1.4.0-1 python-cachecontrol-1:0.14.4-3
python-cachy-0.3.0-12 python-certifi-2026.01.04-1 python-cffi-2.0.0-2
python-chardet-5.2.0-7 python-charset-normalizer-3.4.4-2 python-cleo-1:2.1.0-2
python-click-8.3.1-1 python-cloudpickle-3.1.2-2 python-colorama-0.4.6-6
python-comm-0.2.3-2 python-configobj-5.0.9-6 python-contourpy-1.3.3-3
python-cookiecutter-2.6.0-4 python-crashtest-0.4.1-5
python-cryptography-46.0.5-2 python-cycler-0.12.1-4 python-cymem-2.0.10-1
python-dateutil-2.9.0-8 python-debian-1.0.1-2 python-debugpy-1.8.20-1
python-decorator-5.2.1-2 python-defusedxml-0.7.1-8 python-deprecated-1.2.18-2
python-diff-match-patch-20230430-3 python-dill-0.4.1-1 python-distlib-0.4.0-2
python-distro-1.9.0-4 python-django-5.2.11-1 python-django-crispy-forms-2.5-3
python-docstring-to-markdown-0.17-2 python-docutils-1:0.22.3-2
python-dotenv-1.2.1-2 python-dulwich-0.25.2-1 python-ecdsa-0.19.1-2
python-editables-0.5-7 python-entrypoints-0.4-7 python-et-xmlfile-2.0.0-3
python-executing-2.2.1-3 python-fastbencode-0.3.9-2
python-fastjsonschema-2.21.2-2 python-filelock-3.24.0-1
python-filetype-1.2.0-7 python-findpython-0.7.1-2 python-flake8-1:7.3.0-2
python-flask-3.1.2-2 python-flexcache-0.3-4 python-flexparser-0.4-2
python-fluidity-0.2.1-8 python-fonttools-4.61.1-2 python-fqdn-1.5.1-5
python-frozenlist-1.8.0-2 python-gobject-3.54.5-2 python-greenlet-3.3.1-1
python-h11-0.16.0-2 python-h2-4.3.0-3 python-hatchling-1.28.0-3
python-helpdev-0.7.1-10 python-hpack-4.1.0-3 python-html5lib-1.1-17
python-httpcore-1.0.9-3 python-httpx-0.28.1-7 python-hyperframe-6.1.0-2
python-idna-3.11-2 python-imagesize-1.4.1-7 python-importlib-metadata-8.7.1-3
python-inflect-7.5.0-2 python-inflection-0.5.1-10 python-iniconfig-2.1.0-3
python-installer-0.7.0-14 python-intelhex-2.3.0-9 python-intervaltree-3.2.1-1
python-invoke-2.2.1-2 python-ipykernel-7.2.0-1
python-ipython-pygments-lexers-1.1.1-3 python-isoduration-20.11.0-6
python-isort-7.0.0-3 python-itsdangerous-2.2.0-2 python-jaraco.classes-3.4.0-3
python-jaraco.collections-5.1.0-3 python-jaraco.context-6.0.1-3
python-jaraco.functools-4.1.0-3 python-jaraco.text-4.0.0-4
python-jedi-0.19.2-4 python-jeepney-0.9.0-3 python-jellyfish-1.2.1-2
python-jinja-1:3.1.6-3 python-jiter-0.13.0-2 python-joblib-1.5.3-1
python-json-logger-3.3.0-2 python-json5-0.13.0-2 python-jsonpointer-3.0.0-3
python-jsonschema-4.26.0-1 python-jsonschema-specifications-2025.9.1-2
python-jupyter-client-8.8.0-2 python-jupyter-core-5.9.1-2
python-jupyter-events-0.12.0-2 python-jupyterlab-server-2.28.0-2
python-keyring-25.7.0-3 python-kivy-2.3.1-2 python-kiwisolver-1.4.7-2
python-lark-parser-1.3.1-2 python-legacy-cgi-2.6.4-2
python-levenshtein-0.27.3-2 python-lexicon-3.0.0-2
python-license-expression-30.4.4-2 python-llvmlite-0.46.0-4
python-lockfile-0.12.2-15 python-lsp-black-2.0.0-5 python-lsp-jsonrpc-1.1.2-6
python-lsp-server-1.14.0-1 python-lxml-6.0.2-2 python-lxml-html-clean-0.4.3-2
python-mako-1.3.10-4 python-markdown-3.10.2-1 python-markdown-it-py-4.0.0-2
python-markupsafe-3.0.2-2 python-matplotlib-3.10.8-4
python-matplotlib-inline-0.2.1-2 python-mccabe-0.7.0-9 python-mdurl-0.1.2-9
python-merge3-0.0.16-2 python-mistune-1:3.2.0-1 python-more-itertools-10.8.0-2
python-mpi4py-4.1.1-2 python-msgpack-1.1.2-2 python-multidict-6.7.1-1
python-mypy_extensions-1.1.0-2 python-nest-asyncio-1.6.0-5
python-networkx-3.6.1-1 python-nltk-3.9.1-3 python-numba-0.63.1-5
python-numpy-2.4.2-1 python-numpydoc-1.9.0-2 python-openai-2.21.0-1
python-opencv-4.13.0-2 python-openpyxl-3.1.5-3 python-outcome-1.3.0.post0-7
python-packaging-26.0-1 python-pandas-2.3.3-2 python-pandocfilters-1.5.1-4
python-paramiko-4.0.0-2 python-parso-1:0.8.5-2 python-pathspec-1.0.4-1
python-patiencediff-0.2.18-2 python-pbs-installer-2026.01.27-1
python-pefile-2024.8.26-2 python-pexpect-4.9.0-7 python-pickleshare-0.7.5-12
python-pillow-12.1.1-1 python-pint-0.25.2-2 python-pip-26.0.1-1
python-pipx-1.8.0-2 python-pivy-1:0.6.10-4 python-pkg_resources-81.0.0-1
python-pkginfo-1.12.1.2-2 python-platformdirs-4.9.2-1
python-playwright-1.58.0-1 python-pluggy-1.6.0-3 python-ply-3.11-16
python-poetry-2.2.1-4 python-poetry-core-2.2.1-2
python-poetry-plugin-export-1.9.0-2 python-pooch-1.9.0-1
python-prometheus_client-0.24.1-1 python-prompt_toolkit-3.0.52-2
python-propcache-0.4.1-2 python-psutil-7.2.2-1 python-ptyprocess-0.7.0-9
python-pure-eval-0.2.3-3 python-pyaml-24.12.0-2 python-pyaudio-0.2.14-5
python-pycodestyle-2.14.0-2 python-pycparser-2.23-2 python-pydantic-2.12.5-4
python-pydantic-core-3:2.41.5-3 python-pydocstyle-6.3.0-6 python-pydot-3.0.4-2
python-pyee-13.0.0-3 python-pyelftools-0.32-2 python-pyflakes-3.4.0-2
python-pygithub-2.8.1-1 python-pygments-2.19.2-3 python-pyjwt-2.11.0-1
python-pylint-4.0.4-2 python-pylint-venv-3.0.4-3 python-pyls-spyder-0.4.0-8
python-pynacl-1.6.2-1 python-pyopenssl-25.3.0-2 python-pyparsing-3.3.2-1
python-pypdf-6.7.0-1 python-pyperclip-1.11.0-2 python-pyproject-hooks-1.2.0-6
python-pyqt6-6.10.2-3 python-pyqt6-sip-13.11.0-1
python-pyqt6-webengine-6.10.0-2 python-pyserial-3.5-8
python-pytesseract-0.3.13-4 python-pytest-1:8.4.2-3
python-pytest-timeout-2.4.0-2 python-pytokens-0.4.1-1
python-pytoolconfig-1.3.1-4 python-pytz-2025.2-2 python-pyuca-1.2-5
python-pyxdameraulevenshtein-1.8.0-3 python-pyxdg-0.28-7 python-pyzmq-27.1.0-2
python-qdarkstyle-3.2.3-6 python-qstylizer-0.2.4-3 python-qtawesome-1.4.1-2
python-qtconsole-5.7.1-1 python-qtpy-2.4.3-7 python-rapidfuzz-3.14.3-2
python-reedsolo-1.7.0-5 python-referencing-0.37.0-3 python-regex-2026.1.15-1
python-requests-2.32.5-3 python-requests-toolbelt-1.0.0-6
python-rfc3339-validator-0.1.4-8 python-rfc3987-1.3.8-14 python-rich-14.3.2-2
python-rich-click-1.9.7-1 python-roman-numerals-py-3.1.0-2
python-rope-1.14.0-1 python-rpds-py-0.30.0-3 python-rtree-1.4.1-2
python-ruamel-yaml-0.18.10-2 python-ruamel.yaml.clib-0.2.15-2
python-scikit-learn-1.8.0-2 python-scipy-1.17.0-1 python-seaborn-0.13.2-3
python-secretstorage-3.3.3-7 python-send2trash-1.8.3-3
python-setuptools-1:82.0.0-1 python-shellingham-1.5.4-4 python-six-1.17.0-2
python-slugify-8.0.4-4 python-sniffio-1.3.1-5 python-snowballstemmer-2.2.0-8
python-sortedcontainers-2.4.0-8 python-soupsieve-2.8.3-1 python-sphinx-8.2.3-4
python-sphinx-alabaster-theme-1.0.0-6 python-sphinxcontrib-applehelp-2.0.0-5
python-sphinxcontrib-devhelp-2.0.0-6 python-sphinxcontrib-htmlhelp-2.1.0-5
python-sphinxcontrib-jsmath-1.0.1-21 python-sphinxcontrib-qthelp-2.0.0-5
python-sphinxcontrib-serializinghtml-2.0.0-5 python-spyder-kernels-3.1.3-1
python-sqlparse-0.5.3-2 python-stack-data-0.6.3-5 python-superqt-0.7.8-1
python-tabulate-0.9.0-7 python-text-unidecode-1.3-13
python-textdistance-4.6.3-4 python-threadpoolctl-3.5.0-3
python-three-merge-0.1.1-7 python-tinycss2-1.5.1-2 python-tomli-2.4.0-1
python-tomlkit-0.14.0-1 python-tornado-6.5.2-4 python-tqdm-4.67.3-1
python-traitlets-5.14.3-4 python-trio-0.33.0-1 python-trio-websocket-0.12.2-4
python-trove-classifiers-2026.1.14.14-1 python-typeguard-4.4.4-2
python-typer-0.24.0-1 python-types-python-dateutil-2.9.0.20260124-1
python-typing-inspection-0.4.2-2 python-typing_extensions-4.15.0-3
python-ujson-5.11.0-2 python-uri-template-1.3.0-5 python-urllib3-2.6.3-1
python-userpath-1.9.2-4 python-virtualenv-20.36.1-1 python-watchdog-6.0.0-2
python-wcwidth-0.6.0-1 python-webcolors-25.10.0-2 python-webencodings-0.5.1-13
python-websocket-client-1.9.0-3 python-websockets-16.0-1
python-werkzeug-3.1.3-2 python-whatthepatch-1.0.7-2 python-wheel-0.46.3-1
python-wrapt-1.17.3-2 python-wsproto-1.2.0-7 python-wurlitzer-3.1.1-3
python-wxpython-1:4.2.4-1 python-xlib-0.33-6 python-yaml-6.0.3-2are to upgrade. Please give me a couple of hours so I can catch up
Offline