Harshil
Harshil
-0.5. We can't have all/many parameters of bot methods in Defaults. This parameter in particular is not as significant as say "disable_notification", which is in all send_* methods. Similarly, `message_effect_id`...
The fact that we need some tool like this at all is kinda sad, since >80% of any Bot API update is just boilerplate changes. > My guess is that...
I vote to close this since we have AI agents now. While it would be a fun thing to code this up, maintaining this itself would be like adjusting test...
Yeah, the abstract base class for tests + meta test sounds pretty robust to me. Could also enforce testing of `test_slots`, `to_dict`, `equality` and friends. > Looking at the discussion...
That doesn't really help, when you specify that you want to use "spawn" to start the process. ```python import multiprocessing import msgspec encoder = msgspec.msgpack.Encoder() decoder = msgspec.msgpack.Decoder() def new_process(x):...
@elpekenin Python 3.8 reached EoL yesterday and 3.13 final was released. Do you want to still work on this or should we pick it up again?
Full TB ``` _____________________________________________________________ ERROR at setup of TestAnimationWithoutRequest.test_slot_behaviour _____________________________________________________________ [gw0] linux -- Python 3.14.0 /home/harshil/Documents/pyprojects/python-telegram-bot/.venv/bin/python @contextlib.contextmanager def map_httpcore_exceptions() -> typing.Iterator[None]: global HTTPCORE_EXC_MAP if len(HTTPCORE_EXC_MAP) == 0: HTTPCORE_EXC_MAP = _load_httpcore_exceptions()...
There's nothing hindering PTB to be installed via uv per se. I'll admit that the main reason I opened this issue is so we commit a `uv.lock` file. Currently, each...
> I can understand the reasoning for adding a lock file for development dependencies. However, it must be _not_ be considered for the public dependencies. `pip/uv install ptb` must still...
> If you update the lock file before each CI run, woudn't that have the same effect as not using a lock file at all? I was thinking that it...