Tomasz Bartczak

Results 36 issues of Tomasz Bartczak

Currently there is a setting at https://github.com/sbt/sbt-release/blob/master/src/main/scala/ReleasePlugin.scala#L24 called versions, which is a 'view' on both versions. to get a 'released version' in any phase of the release process predictably we...

When autocompleting snakebite ls it works up to a point where I go into a directory that contains '=' e.g. /projects/[tab] gives /projects/project=A/[tab] gives nothing although there are more things...

For a following file: ``` def test() -> int: try: return 2 except Exception as e: raise e return 1 test() ``` `vulture dead_return.py` doesn't report anything, while it should...

I have an example like this: ``` "load embedded config with ficus" in { import net.ceedubs.ficus.readers.ArbitraryTypeReader._ import net.ceedubs.ficus.Ficus._ val config = ConfigFactory.parseString( """a { value = 2 } |b {...

I verified that such a code ``` val os = new ByteArrayOutputStream() val instantiator = new ScalaKryoInstantiator instantiator.setRegistrationRequired(false) val kryo: Kryo = instantiator.newKryo() val original: Config = ConfigFactory.load kryo.writeObject(new OutputChunked(os),original)...

When adding this annotation to a test super class -> it is not taken into account

When compiling custom wheel for tf with `--config=monolithic` - the resulting tf wheel doesn't have 'libtensorflow_framework.so.2'. This version of tf, although perfectly fine for other purposes - cannot be used...

For an input file like this: ``` from collections.abc import Callable from typing import Collection def a(a: Callable, b: Collection): pass ``` when applying pep585 hook I get: ``` from...

## Is your feature request related to a problem? Please describe. Currently (comet 3.23.1) when I specify `auto_histogram_gradient_logging=True` and/or `auto_histogram_gradient_logging` when using comet with keras, and using a tf.dataset I...

Currently when we run a tensorflow job and a ``` tf.summary.image("a_name", png_as_tensor, step=1) tf.summary.image("a_name", png_as_tensor, step=2) ``` we get a proper grouping by name in tensorboard, but in comet the...

enhancement