PySCeS / pysces

The official PySCeS project source code repository.
https://pysces.github.io
Other
34 stars 10 forks source link

Unify configuration across platforms #92

Closed jmrohwer closed 1 year ago

jmrohwer commented 1 year ago

I've been looking at adding a configuration option for pandas, as per the discussion in #91.

The configuration system is currently kludgy, being different for Windows and POSIX. This is mostly legacy. I am suggesting unifying and consolidating this:

@bgoli any objections to this or am I missing something? We would then not need separate configuration code for win32.

bgoli commented 1 year ago

Pre windows 9 or 10 os.path.expanduser('~') did not work as expected on Windows and was even worse if MinGW or similar was installed and I had to hack something else. Both work as expected on Win11 so I would say go for it.

jmrohwer commented 1 year ago

Implemented in #91