-
Notifications
You must be signed in to change notification settings - Fork 68
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
release: v1.7.0 [Community Feedback] #199
Comments
Please see if this is a bug: Python code: def test_docformatter_v1.7.0()
"""
This is a short desription.
Here is a link to the github issue
https://github.com/PyCQA/docformatter/issues/199
This is a long description.
"""
pass Diff output after running $ docformatter --pre-summary-new --make-summary-multi-line test.py
--- before/test.py
+++ after/test.py
@@ -4,7 +4,7 @@
Here is a link to the github issue
https://github.com/PyCQA/docformatter/issues/199
-
+
This is a long description.
"""
pass |
@seisman it is and it's fixed in v1.7.0-rc2. |
One more potential issue using v1.7.0-rc2: Code: def func():
"""
This is a description.
Example code::
config(par=value)
Example code2::
with config(par=value) as f:
pass
""" Diff output: $ docformatter --pre-summary-new --make-summary-multi-line test.py
--- before/test.py
+++ after/test.py
@@ -4,10 +4,9 @@
Example code::
- config(par=value)
+ config(par=value)
Example code2::
- with config(par=value) as f:
- pass
+ with config(par=value) as f: pass
""" |
@seisman thanks for the bug hunting. The second one is fixed in v1.7.0-rc3. |
Now, v1.7.0-rc3 works well for our PyGMT project. |
|
Tracker for issues related to release v1.7.0 (see #197). Please report all issues encountered while using the v1.7.0 release candidates here.
Release v1.7.0 includes:
--black
that causesdocformatter
to format compatible withblack
(see Add argument to tell docformatter to be compatible with black #94).--no-cap
for user to provide list of words not to capitalize when they appear as the first word in the summary (see v1.6.4 - Consider Not Capitalizing Proper Nouns if Other Capital Letters Exist in the Word #193).Pre-releases for v1.7.0 are available or release candidates can be installed using
pip
:pip install git+https://github.com/pycqa/[email protected]
where the
rc1
would be replaced by the release candidate you'd like to use.The text was updated successfully, but these errors were encountered: