Cedric
Cedric
@ChadFulton Using statsmodels==0.12.0, scipy==1.5.2 and numpy==1.19.1 on two different machines, both on Ubuntu 18.04.5, the following script raises (an LU decomposition error) in one case and is being solved in...
Getting many warnings with ruby 2.7.0 and mocha 1.11.2 along the same lines, here is a simple example below. ```ruby # frozen_string_literal: true require 'test_helper' class MochaTest < ActiveSupport::TestCase class...
@floehopper Thanks for the suggestion. I think it would do it. Even with `*args, **kwargs` type scenarios. I'll let you know if I find a case that cannot be fixed...
Quick debug indicates that ``` hasattr(tz, "localize") is False ``` in this case (within the pendulum.instance code:) ```python def instance( dt, tz=UTC ): # type: (_datetime.datetime, Optional[Union[str, _Timezone]]) -> DateTime...
@tjarratt is there a lot that would need to be done to support RPC/encoded WSDL? If it is not a ton of work and you can give us guidelines, we...
@Funfun may I ask if you had come close to a working solution to support RPC? Could you give us guidelines and/or code we could work from?
@Funfun it would be really helpful. When you have time, can you point a commit we could look at?
I think what you need is ``` pendulum.now().in_timezone('Europe/Brussels') ``` or even if actually using `#now` you can do directly ``` pendulum.now(tz='Europe/Brussels') ``` The instance method is I believe more intended...
My best guess is that pendulum.instance expects a datetime.datetime with a tzinfo attributes, not a pendulum.Datetime, as the point of `#instance` is to get a pendulum.Datetime, from a datetime.datetime I...
Ah ok here is what happens: ``` @classmethod def instance( cls, dt: datetime.datetime, tz: str | Timezone | FixedTimezone | datetime.tzinfo | None = UTC, ) -> Self: tz =...