-
Notifications
You must be signed in to change notification settings - Fork 295
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove setuptools_scm_git_archive from requirement #2598
remove setuptools_scm_git_archive from requirement #2598
Conversation
The package's functionality is now found in setuptools_scm (see pytroll#2549 and https://github.com/Changaco/setuptools_scm_git_archive ). Minimal changes done: 1. Remove setuptools_scm_git_archive from setup.cfg and doc/rtd_environment.yml 2. Change the content of .git_archival.txt according to https://setuptools-scm.readthedocs.io/en/latest/usage/#builtin-mechanisms-for-obtaining-version-numbers fixes pytroll#2549
Codecov Report
@@ Coverage Diff @@
## main #2598 +/- ##
=======================================
Coverage 94.93% 94.93%
=======================================
Files 354 354
Lines 51401 51401
=======================================
Hits 48800 48800
Misses 2601 2601
Flags with carried forward coverage won't be shown. Click here to find out more. |
Pull Request Test Coverage Report for Build 6479992181
💛 - Coveralls |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, but I'll let @djhoese have the last word as he knows more about this than me.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I made a one change to remove the setup_requires
from the setup.cfg
. This section should not have been used since we have a pyproject.toml now. Thanks for cleaning up the changes necessary to drop the old package. I didn't realize I hadn't completed them...but now you're making me worry I didn't do this correctly for other packages (in particular the .git_archival.txt changes).
When CI passes we can merge this. @mraspaud this should be merged before a release.
The package's functionality is now found in setuptools_scm (see #2549 and
https://github.com/Changaco/setuptools_scm_git_archive ).
Minimal changes done:
fixes #2549