<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-openembedded.git/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_3.1.1.bb, branch wrynose</title>
<subtitle>Mirror of git.openembedded.org/meta-openembedded</subtitle>
<id>https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=wrynose</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=wrynose'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/'/>
<updated>2025-08-05T00:32:05+00:00</updated>
<entry>
<title>python3-flask-sqlalchemy: use correct Python build backend class</title>
<updated>2025-08-05T00:32:05+00:00</updated>
<author>
<name>Ross Burton</name>
<email>ross.burton@arm.com</email>
</author>
<published>2025-08-04T21:17:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=ffc1e95ca3aa12a4767ade6b95548c2978749a36'/>
<id>urn:sha1:ffc1e95ca3aa12a4767ade6b95548c2978749a36</id>
<content type='text'>
Signed-off-by: Ross Burton &lt;ross.burton@arm.com&gt;
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>python3-*: Update recipes to correctly check the upstream packages</title>
<updated>2024-12-19T17:41:21+00:00</updated>
<author>
<name>Derek Straka</name>
<email>derek@asterius.io</email>
</author>
<published>2024-12-16T15:55:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=c089690f57155cc62c3b22a9af9527ec927b16e3'/>
<id>urn:sha1:c089690f57155cc62c3b22a9af9527ec927b16e3</id>
<content type='text'>
With the upstream check migrated to the simple repo API, a number of the
recipes required updates to:
1. Remove outdated UPSTREAM_CHECK_REGEX checks
2. Add recipe specific UPSTREAM_CHECK_PYPI_PACKAGE definitions for
   packages that use '_', CamelCase, or other deviations from PEP625 in
   the source archive

Signed-off-by: Derek Straka &lt;derek@asterius.io&gt;
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>meta-python: drop ${PYTHON_PN}</title>
<updated>2024-02-20T07:22:24+00:00</updated>
<author>
<name>Tim Orling</name>
<email>ticotimo@gmail.com</email>
</author>
<published>2024-02-20T04:10:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=94c20e1ef4d7bd1dde1003cde25b9adb1ccc8310'/>
<id>urn:sha1:94c20e1ef4d7bd1dde1003cde25b9adb1ccc8310</id>
<content type='text'>
python 2 is long unsupported, so we no longer need this variable.

Signed-off-by: Tim Orling &lt;tim.orling@konsulko.com&gt;
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>python3-flask-sqlalchemy: fix upstream uri check</title>
<updated>2023-12-22T14:39:33+00:00</updated>
<author>
<name>Derek Straka</name>
<email>derek@asterius.io</email>
</author>
<published>2023-12-21T17:02:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=75f9fe8bab85984e80978bc06ac9965e96831870'/>
<id>urn:sha1:75f9fe8bab85984e80978bc06ac9965e96831870</id>
<content type='text'>
Signed-off-by: Derek Straka &lt;derek@asterius.io&gt;
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>python3-flask-sqlalchemy: upgrade 2.5.1 -&gt; 3.1.1</title>
<updated>2023-12-07T22:25:12+00:00</updated>
<author>
<name>Theodore A. Roth</name>
<email>troth@openavr.org</email>
</author>
<published>2023-12-07T18:11:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=e351a50f8b001abe5ee3d92de5d8f173b74f758a'/>
<id>urn:sha1:e351a50f8b001abe5ee3d92de5d8f173b74f758a</id>
<content type='text'>
The 2.5.1 release is not comptabile with python3-sqlalchemy 2.0.23 which
is currently provided by meta-openembedded. This results in the
following error:

  root@host:~# python3
  Python 3.11.5 (main, Aug 24 2023, 12:23:19) [GCC 13.2.0] on linux
  Type "help", "copyright", "credits" or "license" for more information.
  &gt;&gt;&gt; from flask_sqlalchemy import SQLAlchemy
  &gt;&gt;&gt; from flask import Flask
  &gt;&gt;&gt; app = Flask('foobar')
  &gt;&gt;&gt; app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:////tmp/test.db'
  &gt;&gt;&gt; db = SQLAlchemy(app)
  Traceback (most recent call last):
    File "&lt;stdin&gt;", line 1, in &lt;module&gt;
    File "/usr/lib/python3.11/site-packages/flask_sqlalchemy/__init__.py", line 758, in __init__
      _include_sqlalchemy(self, query_class)
    File "/usr/lib/python3.11/site-packages/flask_sqlalchemy/__init__.py", line 112, in _include_sqlalchemy
      for key in module.__all__:
                 ^^^^^^^^^^^^^^
  AttributeError: module 'sqlalchemy' has no attribute '__all__'. Did you mean: '__file__'?

Signed-off-by: Theodore A. Roth &lt;theodore_roth@trimble.com&gt;
Signed-off-by: Theodore A. Roth &lt;troth@openavr.org&gt;
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
</feed>
