[Python-apps-commits] r13495 - in packages/prospector/trunk/debian (3 files)

stender at users.alioth.debian.org stender at users.alioth.debian.org
Sat Aug 13 19:18:43 UTC 2016


    Date: Saturday, August 13, 2016 @ 19:18:42
  Author: stender
Revision: 13495

use pycodestyle instead of pep8

Modified:
  packages/prospector/trunk/debian/changelog
  packages/prospector/trunk/debian/control
  packages/prospector/trunk/debian/prospector.txt

Modified: packages/prospector/trunk/debian/changelog
===================================================================
--- packages/prospector/trunk/debian/changelog	2016-08-13 19:02:30 UTC (rev 13494)
+++ packages/prospector/trunk/debian/changelog	2016-08-13 19:18:42 UTC (rev 13495)
@@ -1,8 +1,13 @@
 prospector (0.12.2-1) UNRELEASED; urgency=medium
 
   * New upstream release (Closes: #833659).
+  * deb/control:
+    + depend on pycodestyle (plus, changed description on that).
+  * manpage:
+    + change info towards pycodestyle
+    + use more newlines to make the source more readable.
 
- -- Daniel Stender <stender at debian.org>  Sat, 13 Aug 2016 21:01:50 +0200
+ -- Daniel Stender <stender at debian.org>  Sat, 13 Aug 2016 21:14:12 +0200
 
 prospector (0.12-1) unstable; urgency=medium
 

Modified: packages/prospector/trunk/debian/control
===================================================================
--- packages/prospector/trunk/debian/control	2016-08-13 19:02:30 UTC (rev 13494)
+++ packages/prospector/trunk/debian/control	2016-08-13 19:18:42 UTC (rev 13495)
@@ -19,7 +19,7 @@
  python3-pylint-celery,
  python3-pylint-django (>= 0.7.2),
  python3-pylint-flask,
- python3-pep8,
+ python3-pycodestyle,
  python3-pep8-naming,
  pydocstyle,
  python3-mccabe,
@@ -51,8 +51,8 @@
  It provides an uniform and flexible interface for these tools:
   - Pylint (extensive Python code checker)
   - Pyflakes (checks Python code for logical errors)
-  - Pep8 (checks for Python coding style conventions)
-  - Pep8-naming (checks for naming conventions not covered by Pep8)
+  - Pycodestyle (checks for PEP-8 coding style conventions)
+  - Pep8-naming (checks for PEP-8 naming conventions not covered by pycodestyle)
   - McCabe (checks for cyclomatic code complexity)
   - Pydocstyle (checks for compliance with the PEP-257 docstring conventions)
   - Dodgy (checks for hard coded passwords, VCS diff checkins etc.)

Modified: packages/prospector/trunk/debian/prospector.txt
===================================================================
--- packages/prospector/trunk/debian/prospector.txt	2016-08-13 19:02:30 UTC (rev 13494)
+++ packages/prospector/trunk/debian/prospector.txt	2016-08-13 19:18:42 UTC (rev 13495)
@@ -14,11 +14,17 @@
  complexity. It provides an uniform and flexible interface to a number of
  tools for static Python code checking.
 
- By default, Prospector uses the following tools: Dodgy, McCabe (a Flake8 extension),
- Pydocstyle (Pep257 successor), Pep8 (supplemented by Pep8-naming, a Flake8 extension),
- Pyflakes, and Pylint. It auto detects libraries a project uses, to which it could
- adapt (currently, Celery, Django and Flask are supported individually). Additionally,
- Vulture and Pyroma could be employed for testing.
+ By default, Prospector uses the following tools:
+ Dodgy,
+ McCabe (a Flake8 extension),
+ Pydocstyle (successor of the tool pep257),
+ Pycodestyle (successor of the tool pep8),
+ Pep8-naming (a Flake8 extension),
+ Pyflakes, and
+ Pylint.
+ It auto detects libraries a project uses, to which it could adapt
+ (currently, Celery, Django and Flask are supported individually).
+ Additionally, Vulture and Pyroma could be employed for testing.
 
  Prospector could be adjusted very detailed to personal coding styles
  through profiles. For comprehensive information on this application,




More information about the Python-apps-commits mailing list