con / fscacher

Caching results of operations on heavy file trees
MIT License
0 stars 2 forks source link

Make versioneer.py use setuptools instead of distutils #54

Closed jwodder closed 3 years ago

jwodder commented 3 years ago

Distutils was officially deprecated in Python 3.10 and will be removed from the standard library completely in 3.12. This PR thus removes the use of distutils from the code.

codecov-commenter commented 3 years ago

Codecov Report

Merging #54 (10068b6) into master (e7aaaf9) will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master      #54   +/-   ##
=======================================
  Coverage   92.67%   92.67%           
=======================================
  Files           3        3           
  Lines         382      382           
  Branches       44       44           
=======================================
  Hits          354      354           
  Misses         17       17           
  Partials       11       11           

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update e7aaaf9...10068b6. Read the comment docs.

yarikoptic commented 3 years ago

thank you!