denisenkom / pytds

Python DBAPI driver for MSSQL using pure Python TDS (Tabular Data Stream) protocol implementation
MIT License
190 stars 52 forks source link

RELEASE.rst: make a release the modern way #161

Closed deronnax closed 5 months ago

deronnax commented 5 months ago

Invoking directly setup.py is deprecated (Why you shouldn't invoke setup.py directly). Plus, this old way of doing only produces sdist and not wheels, which are more modern, the norm now and way more faster to install (I noticed pytds was using the old way because PDM on my project was taking longer to install pytds).

This is a slight change and it's the "good" way to do it "today". I am available if you have more questions.

codecov[bot] commented 5 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Comparison is base (b04d08e) 89.13% compared to head (815174f) 89.13%.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #161 +/- ## ======================================= Coverage 89.13% 89.13% ======================================= Files 44 44 Lines 8092 8092 ======================================= Hits 7213 7213 Misses 879 879 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

denisenkom commented 5 months ago

Looks good, thanks!