Trevor Gross
Trevor Gross
Hello all, I would like to suggest adding a simple way to configure the output format to use engineering notation - that is, scientific notation that is restricted to powers...
Hello all, I would like to ask if there has been consideration about adding a model that allows for data storage and serialization/deserialization in one. This is a pretty common...
Hello all, I've got a use case which seems like it would be pretty common, but isn't really documented. There are a lot of cases where it is helpful to...
### Discussed in https://github.com/celery/celery/discussions/7527 Originally posted by **tgross35** May 17, 2022 Running with the mentioned versions raises the following error: ``` /usr/local/lib/python3.10/site-packages/celery/utils/imports.py:145: DeprecationWarning: SelectableGroups dict interface is deprecated. Use select....
Hey all, This is my followup to #21424. I added a pre-commit config that applies pep8 formatting ([Black](https://black.readthedocs.io/), via [Darker](https://pypi.org/project/darker/0.2.0/)), format checking ([flake8](https://flake8.pycqa.org/en/latest/) + [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear), also via Darker) and pep7...
SQLAlchemy is moving toward a new system, detailed here: https://docs.sqlalchemy.org/en/14/changelog/migration_20.html. Flask-SQLAlchemy should also move in that direction. The main difference is that `session.query(Model)` is being replaced, essentially with, `session.execute(select(Model))`. The...
Hello uutils team, I know there has been some interest in implementing these tools in previous issues. Would you consider setting up a repository with basic structure? The three tools...
Would you consider shipping a musllinux wheel? This is possible since [PEP 656](https://www.python.org/dev/peps/pep-0656/) Not like the package is all that large, but it would still be nice to have the...
## Problem overview I would like to propose somehow being able to specify the specific bind(s) that Flask-Migrate migrates. Within `SQLALCHEMY_BINDS` there may be multiple databases; it is possible that...
Hello, Getting programs to work with no_std is pretty tricky on the playground. For example, the simple program: ```rs #![no_std] fn main()->(){} ``` This won't compile (as expected) because of...