0x26res
0x26res
I think it's because of the way tqdm erases the progress bar and redraw it in place. But cloudwaatch can not go back in time. You could use `position=-1` so...
@nfultz I have no idea. I didn't have in mind python 2 users. You could potentially tag the new version in `setup.py` so it drops support for python 2. Then...
Since Matplotlib 3.1 we get these warnings because of https://github.com/pyinstaller/pyinstaller/blob/master/PyInstaller/loader/rthooks/pyi_rth_mpldata.py: `The MATPLOTLIBDATA environment variable was deprecated in Matplotlib 3.1 and will be removed in 3.3.` I think it the environment...
@pranavrth, thanks for having a look. I spent some time trying to figure out where the issue comes from. I don't think it has to do with the `protoc` version....
Here's an easy example (from googleapis-common-protos==1.53.0). ``` >>> from google.type.date_pb2 import Date >>> from google.protobuf.message_factory import MessageFactory >>> MessageFactory().GetPrototype(Date.DESCRIPTOR) is Date False >>> Date >>> MessageFactory().GetPrototype(Date.DESCRIPTOR) ``` I'm yet to...
@casperdcl I saw you recently added this feature: https://github.com/tqdm/tqdm/pull/1491 For context, when running stuff in AWS, I'm trying to have each `tqdm` statement on a different line. Otherwise it looks...
> Why doesn't > > ``` > from time import sleep > > from tqdm import tqdm > > if __name__ == "__main__": > for i in tqdm(range(9), position=-1): >...
I also stumbled across that issue. I was wondering at which level this was happening. Is it part of some arrow code that applies the changes, or is it code...
I'm using [Amazon Managed Workflows for Apache Airflow](https://docs.aws.amazon.com/mwaa/index.html). They dictate which version of python/airflow you can use and the latest version is 2.7.2, which has this bug. Historically I have...
> It is still supported in Airflow 2 (whether it is in MWAA I have no idea, but they run generally vanilla Airflow so there is no reason to not...