Armin Berres
Armin Berres
#### Problem description The following (toy) snippet worked with 1.2: ```python df = pd.DataFrame(columns=["a", "b"]) df["a"] = df.apply(lambda x: x["a"], axis=1) ``` With 1.3 it fails with `ValueError: Columns must...
**Describe the bug** To ensure settings are found event when invoked from an arbitrary directory I am passing `ROOT_PATH_FOR_DYNACONF`. When variable is set includes are no more loaded relatively to...
**Is your feature request related to a problem? Please describe.** After scratching my head for an hour or more why a unit test of mine fails (but everything is fine...
value_counts() does not return with a sorted index, hence the plot's labels were random.
**To Reproduce** Set a retry policy in a mapping like this: ``` retry_policy: retry_on: "reset" ``` The CRD validation will fail with ```Unsupported value: "reset": supported values: "5xx", "gateway-error", "connect-failure",...
For testing purposes, I am trying to find out when a crossbar router is available and accepting connections. When the router is not yet started the `autobahn.asyncio.wamp.ApplicationSession` throws a `ConnectionRefusedError`....
**Describe the bug** Given the code below I regularly run into a mypy crash when the cache is warm. **Expected behavior** No crash **To Reproduce** I am having a hard...
**Describe the bug** Exception with `INTERNAL ERROR: maximum semantic analysis iteration count reached` **Expected behavior** A message like `error: Name "Address" is not defined [name-defined]` **To Reproduce** Type check the...
**Describe the bug** When a column type is not directly using an SA column class but instead an indirection is in place, the column is not added to `__init__` and...
Stumbled upon this in my application which uses autobahn-python. See the following sample code: ```import txaio import logging txaio.use_asyncio() txaio.start_logging(level='debug') logging.info('Working dict output: %s', str({'a': 1})) logging.info('Broken dict output: %s',...