James Dow

Results 5 comments of James Dow

In a weird wrinkle, localizing to pytz first and then converting to zoneinfo causes the series to display wrong but have the correct actual values ``` In [60]: s.dt.tz_localize(pytz.timezone('US/Eastern'), ambiguous...

Haven't had to work with Cython before today, but I think I understand the logic of these sections I'm going to try my best to see if I can figure...

The [Python Packaging User Guide](https://packaging.python.org/en/latest/) will have all the info you'll want. Unless you are dealing with managing dependencies outside of Python (in which case moving entirely to the conda...

Easiest way to use the actual tool defaults instead of Hatch defaults is to add this to pyproject.toml/hatch.toml ([link to docs](https://hatch.pypa.io/latest/config/internal/static-analysis/#no-config)) ```toml [tool.hatch.envs.hatch-static-analysis] config-path = "none" ``` (edit: I haven't...

A potential compromise option could be to add a [Hatch configuration option](https://hatch.pypa.io/latest/config/hatch/) with a boolean flag of whether the static analysis should use tool defaults or Hatch defaults