Skip to content

Commit

Permalink
Drop support for Python 3.3 which is not present on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
davisagli authored and pbauer committed Oct 5, 2018
1 parent f8630f8 commit 0b4d1af
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ sudo: false
python:
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Changelog

Breaking changes:

- *add item here*
- Dropped support for Python 3.3.

New features:

Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.4",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py26,py27,py33,py34,py35,py36,pypy,pypy3
py26,py27,py34,py35,py36,pypy,pypy3

[testenv]
commands =
Expand Down

1 comment on commit 0b4d1af

@jenkins-plone-org
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@davisagli Jenkins CI reporting about code analysis
See the full report here: https://jenkins.plone.org/job/package-plone.intelligenttext/25/violations

plone/intelligenttext/tests.py:4:1: I003 isort expected 1 blank line in imports, found 0
plone/intelligenttext/tests.py:11:5: T003 print function found.
plone/intelligenttext/tests.py:21:10: C812 missing trailing comma
plone/intelligenttext/transforms.py:4:1: I003 isort expected 1 blank line in imports, found 0
plone/intelligenttext/transforms.py:22:9: P103 other string does contain unindexed parameters
plone/intelligenttext/transforms.py:22:80: E501 line too long (278 > 79 characters)
plone/intelligenttext/transforms.py:23:27: C812 missing trailing comma
plone/intelligenttext/transforms.py:27:27: C812 missing trailing comma
plone/intelligenttext/transforms.py:64:45: Q000 Remove bad quotes.
plone/intelligenttext/transforms.py:69:20: Q000 Remove bad quotes.
plone/intelligenttext/transforms.py:70:32: Q000 Remove bad quotes.
plone/intelligenttext/transforms.py:74:26: Q000 Remove bad quotes.
plone/intelligenttext/transforms.py:80:37: Q000 Remove bad quotes.
plone/intelligenttext/transforms.py:80:54: Q000 Remove bad quotes.
plone/intelligenttext/transforms.py:91:11: T000 Todo note found.
plone/intelligenttext/transforms.py:102:16: S001 found module formatter
plone/intelligenttext/transforms.py:112:16: S001 found module formatter
plone/intelligenttext/transforms.py:155:18: S001 found module formatter
plone/intelligenttext/transforms.py:181:44: C812 missing trailing comma
plone/intelligenttext/transforms.py:184:7: T000 Todo note found.

Follow these instructions to reproduce it locally.

Please sign in to comment.