James Beith
James Beith
Fantastic. I'd been subscribed to #207 for news on this. The "make the connection read-only" is just what I've been after. 👏
`yapf` and `isort` currently handle blank lines near Top-level imports and comments differently. `isort` is happy with this: ``` from foo import bar # Public def baz(): pass ``` but...
I just ran in to this too with the now released Django 1.9
Could we use `@overload` and `Literal` for the `load_workbook()` function, where if `read_only` is the literal `True` then we instead return some kind of new `ReadOnlyWorkbook` type which itself returns...
> Do you want to work on this? @sobolevn I'll aim to take a look 👍🏼
Also getting a crash with `undefined symbol: _PyThread_CurrentExceptions` running on Python 3.13.1 with `ddtrace==2.20.0`. ``` failed on setup with "ImportError: /venv/lib/python3.13/site-packages/ddtrace/profiling/collector/stack.cpython-313-x86_64-linux-gnu.so: undefined symbol: _PyThread_CurrentExceptions" tests/integration/common/interfaces/common/test_management_commands.py:40: in datadog_profiler_results from ddtrace.profiling.exporter import...
I was going to post a similar report. Using Python 3.13 and... ``` mypy==1.14.1 django==5.1.5 django-stubs==5.1.2 ``` I was updating a `QuerySet` to use [PEP 695 – Type Parameter Syntax](https://peps.python.org/pep-0695/),...
I'm a +1 for this. My use case is a little more simplified. I have a project with the following structure. ``` src/ my_package/ ... pyproject.toml ``` I have to...
See attached which has one broken ImportLinter contract (on purpose). From the project dir (i.e. same level as `pyproject.toml`) I want to be able to run `uv run lint-imports` but...
Thanks @seddonym. However, my project in question is a non-package ("virtual") project, or as uv describes, it's an [application project](https://docs.astral.sh/uv/concepts/projects/init/#applications). > It does not include a build system, it is...