Kronuz / pyScss

pyScss, a Scss compiler for Python
MIT License
582 stars 141 forks source link

Switch from pathlib to pathlib2 #355

Closed asergi closed 3 years ago

asergi commented 8 years ago

The pathlib backport module is no longer maintained. The development has moved to the pathlib2 module instead.

Quoting from the pathlib's README: "Attention: this backport module isn't maintained anymore. If you want to report issues or contribute patches, please consider the pathlib2 project instead."

coveralls commented 8 years ago

Coverage Status

Coverage increased (+0.05%) to 66.96% when pulling 0d0da92cebd6418dd9772a4590df55e3ba863888 on asergi:pathlib2 into 42b7e5270407b1abd8063a11080ea5ea987076eb on Kronuz:master.

asergi commented 8 years ago

Python 3.2 test fails due to coverage>=4.0 dropped support for it.

eevee commented 8 years ago

Curious: why was there a switchover at all? A large part of the appeal of pathlib was that it's a drop-in replacement, no except ImportError nonsense required.

asergi commented 8 years ago

I completely lost your comment, sorry. The reason is simple: naming a third-party module like a stdlib one is a really bad idea.