Auke Willem Oosterhoff

Results 43 issues of Auke Willem Oosterhoff

- **Poetry version**: 1.3.2 - **Python version**: Python: 3.10.0 - **OS version and name**: Arch, Kernel version 6.1.10 - **pyproject.toml**: https://gist.github.com/OrangeTux/9b5269bc7070ed43e94f7ad9efb119e4 - [x] I am on the [latest](https://github.com/python-poetry/poetry/releases/latest) stable Poetry...

kind/bug
status/triage

`cargo test` fails with: ``` $ cargo test master ✭ Compiling json_schema_test_suite_proc_macro v0.3.0 (/home/auke/projects/jsonschema-rs/jsonschema-test-suite/proc_macro) Compiling jsonschema v0.17.1 (/home/auke/projects/jsonschema-rs/jsonschema) error[E0432]: unresolved import `syn::ItemFn` --> /home/auke/projects/jsonschema-rs/jsonschema-test-suite/proc_macro/src/lib.rs:41:37 | 41 | use syn::{parse_macro_input, Ident,...

`cargo tests` depends on an external, undocumented dependency: the JSON Schema Test Suite. This commit introduces instructions how to get test suite. Without the test suite, `cargo test` fails with:...

Running `cargo test` in the jsonschema/ folder fails with: ```bash cargo test master ✭ Compiling json_schema_test_suite_proc_macro v0.3.0 (/home/auke/projects/jsonschema-rs/jsonschema-test-suite/proc_macro) Compiling jsonschema v0.17.1 (/home/auke/projects/jsonschema-rs/jsonschema) error[E0432]: unresolved import `syn::ItemFn` --> /home/auke/projects/jsonschema-rs/jsonschema-test-suite/proc_macro/src/lib.rs:41:37 | 41...

How do I execute the unit tests? I ran `cargo test` in jsonschema/, but that fails with: ```bash jsonschema/ $ cargo test error: custom attribute panicked --> tests/test_suite.rs:5:1 | 5...

When deserializing some data into a struct, `serde` doesn't care if an field with type `Option` is available in the source bytes or not. For example, the following code works...

C-enhancement
A-third-party

The current routing API provides very little flexibility. The current approach with the `@on()` decorator has a few limitations. # Issues 1. The interface of a handlers is limited to...

enhancement

This PR introduces support for OCPP 2.1. The code in ocpp/v21 is generated by the newly introduced code generator. I've created this draft to gather feedback on the generated code...

This library doesn't anymore with of `jsonschema` 4.18 and higher. This version changes the way references are resolved. Apparently, not all schemas include correct references and raise an error. Steps...

bug