EdgyNortal

Results 5 issues of EdgyNortal

closes #475 @jmaupetit This ticket looked useful to me, so took a run at this as well.

feature
needs review

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...

![image](https://user-images.githubusercontent.com/108864217/188197431-6f23baa1-9643-4a49-b1b5-937fddbc5d58.png) 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...

bug

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...

bug

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...

bug