Stijn de Gooijer
Stijn de Gooijer
Resolves: [python-poetry/poetry#4303](https://github.com/python-poetry/poetry/issues/4303) - [x] Added **tests** for changed code. Changes: * Updated the `poetry-schema.json` to add `authors` to the 'required' section * Updated tests as required Note that [python-poetry/poetry#6112](https://github.com/python-poetry/poetry/pull/6112) must...
As the project becomes more popular, we can expect more people to start contributing to the code base. Having a good linting setup will make sure our code quality remains...
String literal arguments can be a source of bugs and friction. Consider the following behaviour currently in Polars: ```python df = pl.read_csv('iris.csv', encoding='Utf8') # RuntimeError: BindingsError: "encoding not Utf8 not...
There are a few improvements I would like to see when it comes to the [Python API reference page](https://pola-rs.github.io/polars/py-polars/html/index.html). * [ ] Sort the menu on the left by relevancy...
Originally discussed in #3890 Polars no longer has NumPy as a dependency. But interop with NumPy obviously still requires NumPy to be installed. There is one more case where NumPy...
Relates to: #4303 Relates to: [poetry-core#437](https://github.com/python-poetry/poetry-core/pull/437) This change is required to make the downstream tests pass for the linked fix in `poetry-core`. Changes: * Add `authors` field to test fixtures...
Whenever I create a new .rs file in my project, I don't receive any warnings/lints until I restart VSCode. After I restart, everything works as expected. I'm sure I must...
### Description Fixes #3124 The logic implemented is as follows: * If Black's `target_version` is specified in the `pyproject.toml`, we ignore the project metadata. * If it is not specified,...
Let's see if I can get this working now... Changes: * Add rust-cache step to the docs-deploy workflow. This saves about 3 minutes per workflow run. WIP
Changes: * Use `maturin-action` for the Windows/macOS workflow, rather than manually running commands. * I see no reason not to use the action, like we do in other release workflows....