Jeremy Volkman

Results 17 issues of Jeremy Volkman

This is the other half of the patch set I've been maintaining for `repairwheel`. Hopefully these changes are innocuous enough to push upstream.

Following up from a community thread: https://community.openhab.org/t/z-wave-dimmer-restore-last-value-setting/25808 The binding should poll a dimmer device for its final value when the "restore last value" option is enabled and the device is...

Awaiting feedback...

When parsing a timestamp (e.g., `timestamp("2020-10-20T12:00:00-05:00")`), the provided timezone offset is stored but not output by `__str__` or `__repr__` which are hard coded to output the `Z` UTC abbreviation. I...

bug

Currently, if `pyproject.toml` has an entry like `foo==1.3; sys_platform='darwin'`, pycross basically ignores the marker. Maybe that's the right approach. But another option would be to use it in a `compatible_with`...

enhancement

Two issues: 1. Today if a package is compatible with all configured platforms, no `select` is generated which provides no way to prevent some other incompatible platform from using it....

enhancement

Take for example this annotation: ``` crate.annotation( crate = "pyo3-build-config", build_script_data = [ "@python_3_11//:files", "@python_3_11//:python3", ], build_script_env = { "PYO3_PYTHON": "$(execpath @python_3_11//:python3)", }, ) ``` This annotation fails because `@python_3_11`...