karlicoss
karlicoss
Hi, you need an additional package for that (I guess the warning needs to be improved), see https://github.com/karlicoss/HPI/blob/master/doc/SETUP.org#install-main-hpi-package
No probs about resurrecting, appreciate the effort for searching instead of spamming with new issues :) It's an optional dependency (since you don't have to use HPI to use orger,...
Ran into the same issue! Seems like the same as https://github.com/Delgan/loguru/issues/1008 ?
Hey, I also ran into this issue and created a minimal reproducer, here's the link https://github.com/karlicoss/tox_dependencygroup_self_reference It's often useful to install some optional dependencies while doing testing/linting in the project....
Hmm, I'm not sure it only happens on 3.13? ``` $ uv run --python=3.12 --extra dev python3 --version warning: No `requires-python` value found in the workspace. Defaulting to `>=3.12`. Python...
Hi! Sorry, I've been quite busy lately and a little all over the place. I added project status now, makes sense as other people depend on it https://github.com/karlicoss/orgparse?tab=readme-ov-file#project-status In terms...
https://play.ty.dev/6c580aa1-8aec-4e21-8950-b7ec53abd987 ```py from typing import Sequence, reveal_type def test(command: Sequence[str] | int) -> str: reveal_type(command) # Sequence[str] | int if isinstance(command, int): return str(command) else: reveal_type(command) # Sequence[str] & ~int...
Sorry, just noticed it! I think I removed it when I switched to semantic versioning generated from git tag information -- maintinaing a version manually in the source code is...
Hey, sorry again for being away! Fair enough that you can fill it dynamically, but then what's the benefit of having it in orgparse if whoever needs it can just...
> And this don't work It works, just need to import correctly ``` [i]>>> import importlib.metadata [i]>>> importlib.metadata.version('orgparse') '0.4.20231004' ``` > which is the usual way in Python packages I...