Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pycodestyle
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian Python Team
packages
pycodestyle
Commits
0084eb3c
Commit
0084eb3c
authored
5 years ago
by
Sandro Tosi
Browse files
Options
Downloads
Patches
Plain Diff
Drop python2 support; Closes: #937408
parent
b0f9ecf2
No related branches found
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
debian/changelog
+6
-0
6 additions, 0 deletions
debian/changelog
debian/control
+0
-15
0 additions, 15 deletions
debian/control
debian/rules
+1
-2
1 addition, 2 deletions
debian/rules
debian/tests/control
+0
-5
0 additions, 5 deletions
debian/tests/control
debian/tests/python2
+0
-11
0 additions, 11 deletions
debian/tests/python2
with
7 additions
and
33 deletions
debian/changelog
+
6
−
0
View file @
0084eb3c
pycodestyle (2.5.0-3) UNRELEASED; urgency=medium
* Drop python2 support; Closes: #937408
-- Sandro Tosi <morph@debian.org> Mon, 16 Mar 2020 00:55:11 -0400
pycodestyle (2.5.0-2) unstable; urgency=medium
* Bump Standards-Version to 4.4.1.
...
...
This diff is collapsed.
Click to expand it.
debian/control
+
0
−
15
View file @
0084eb3c
...
...
@@ -5,8 +5,6 @@ Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.
Uploaders: Ondřej Nový <onovy@debian.org>
Build-Depends: debhelper-compat (= 12),
dh-python,
python-all,
python-setuptools,
python3-all,
python3-setuptools,
Standards-Version: 4.4.1
...
...
@@ -26,19 +24,6 @@ Description: Python style guide checker (formerly called pep8)
Parseable output listing line numbers of the error location. Consists of
just one Python file, and requires only stdlib.
Package: python-pycodestyle
Architecture: all
Depends: ${misc:Depends},
${python:Depends},
Breaks: python-flake8 (<< 3.5.0-2~)
Replaces: pycodestyle (<< 1.6.2-0.1),
Description: Python style guide checker (formerly called pep8) - Python 2.x
Features a plugin architecture allowing for adding new checks is easily.
Parseable output listing line numbers of the error location. Consists of
just one Python file, and requires only stdlib.
.
This package contains the Python 2.x module.
Package: python3-pycodestyle
Architecture: all
Depends: ${misc:Depends},
...
...
This diff is collapsed.
Click to expand it.
debian/rules
+
1
−
2
View file @
0084eb3c
...
...
@@ -3,11 +3,10 @@
export PYBUILD_NAME = pycodestyle
%:
dh $@ --with
python2,
python3 --buildsystem=pybuild
dh $@ --with python3 --buildsystem=pybuild
override_dh_auto_install:
dh_auto_install
rm -rf debian/python-pycodestyle/usr/bin
mkdir -p debian/pycodestyle/usr/bin
mv debian/python3-pycodestyle/usr/bin/* debian/pycodestyle/usr/bin
This diff is collapsed.
Click to expand it.
debian/tests/control
+
0
−
5
View file @
0084eb3c
Test-Command: cd "$AUTOPKGTEST_TMP" ; python2 -c "import pycodestyle; print pycodestyle.__version__"
Test-Command: cd "$AUTOPKGTEST_TMP" ; python3 -c "import pycodestyle; print(pycodestyle.__version__)"
Tests: python2
Depends: python-pycodestyle
Tests: python3
Depends: python3-pycodestyle
...
...
This diff is collapsed.
Click to expand it.
debian/tests/python2
deleted
100755 → 0
+
0
−
11
View file @
b0f9ecf2
#!/bin/sh
set
-e
cd
"
$AUTOPKGTEST_TMP
"
cat
>
E40.py
<<
EOF
import os, sys
EOF
python2
-m
pycodestyle E40.py |
grep
E401
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment