EdgyNortal
EdgyNortal
closes #475 @jmaupetit This ticket looked useful to me, so took a run at this as well.
Ran into an issue building a Docker image that involved jupyter-client, and a conflicting entrypoints version. The work around was to hard pin entrypoints in our code. But as that...
 Ran into an issue building a Docker image that involved altair, and a conflicting entrypoints version. The work around was to hard pin `entrypoints` in our code. But as...
https://github.com/astral-sh/ruff/pull/7984 The `--format` cli option has been replaced with `--output-format` I assume an additional config flag to opt in to new/old flag would support the transition period for users using...
MRE: ``` import databases @pytest.fixture(scope="session") def db(): return databases.Database("postgres://...") @pytest.fixture() async def transaction(db): await db.connect() async with db.transaction(force_rollback=True): yield db async def test_example(transaction): await transaction.execute("select 1") ``` ``` ___________________________________ ERROR...