Mathieu Bridon

Results 16 issues of Mathieu Bridon

I'm trying to update Blender in Flathub, and `appstream-util` crashes on the new appdata: ``` $ appstream-util validate _build/files/share/appdata/org.blender.Blender.appdata.xml _build/files/share/appdata/org.blender.Blender.appdata.xml: Segmentation fault (core dumped) ``` While that's probably a problem...

SQLAlchemy allows setting UUID columns to either a string representation of a UUID (e.g '46260785-9b7e-4a59-824f-af994a510673') or to a Python uuid.UUID object. Fixes #94

I have a model using PostgreSQL's UUID: ```python from sqlalchemy.dialects import postgresql class MyModel(Base): __tablename__ = 'my-model' some_id = Column(postgresql.UUID(as_uuid=True), nullable=False) ``` SQLAlchemy lets me create instances as follows: ```python...

I'm using SQLAlchemy's `declared_attr` decorator to add columns and relationships. However, the decorated columns and relationships are completely ignored. Here is a very simplified reproducer: ```python from sqlalchemy.ext.declarative import declarative_base...

enhancement
priority-normal
topic-plugins

SQLAlchemy allows defining column defaults with a callable getting the insert/update context as an argument ([doc](https://docs.sqlalchemy.org/en/13/core/defaults.html?highlight=column%20default%20callable#context-sensitive-default-functions)), e.g: ```python def get_default(context): return context.get_current_parameters()['name'] + 'whatever' class MyModel(Base): __tablename__ = 'my_model' id...

priority-normal
topic-stubs

Here is a very simplified reproducer: ```python from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.schema import Column from sqlalchemy.types import Integer Base = declarative_base() class BaseMixin(Base): __abstract__ = True field1 = Column(Integer)...

bug
priority-normal
topic-plugins

With this one can build Dino from master with `flatpak-builder`. --- If you want to try this out, follow this procedure: 1. install Flatpak and add the Flathub repository (see...

I kept receiving notifications that Glimpse was running in the background when it wasn't. Eventually I got tired of it and clicked the "forbid" button. Then I found my build...

bug

## Linux distribution and version Whatever is installed on the Flathub builder as of July 31 2019. ## Flatpak-builder version Whatever is installed on the Flathub builder as of July...

Running the `gir` tool against the `GLib-2.0.gir` file from glib 2.58 in `sys` work mode, I get the following: ``` GirXml: gir-files/GLib-2.0.gir:35680:11: Missing type name ``` And nothing else. It...