-
Notifications
You must be signed in to change notification settings - Fork 12
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
Fix version editable install and add releasing guide #75
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #75 +/- ##
==========================================
+ Coverage 46.97% 47.34% +0.36%
==========================================
Files 10 10
Lines 447 452 +5
Branches 71 72 +1
==========================================
+ Hits 210 214 +4
Misses 230 230
- Partials 7 8 +1 ☔ View full report in Codecov by Sentry. |
42e2846
to
eb419a6
Compare
def run_towncrier(tag): | ||
cmd = ("towncrier", "build", "--version", tag.strip("v")) | ||
|
||
return subprocess.call(cmd) |
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.
dos not seem to be using towncrier so far
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 opted for leaving the script as it is but commented out the call to this function in the __main__
block.
No description provided.