Skip to content

Commit 37642ee

Browse files
committedApr 6, 2019
Ignore broken lints and update python
1 parent e4d054e commit 37642ee

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,4 @@ coverage.xml
5959
# Folders
6060
.idea/
6161
.virtualenv/
62+
.coverage.*

‎.travis.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,18 @@ cache: pip
44
language: python
55
python:
66
- '2.7'
7-
- '3.3'
87
- '3.4'
98
- '3.5'
109
- '3.6'
10+
- '3.7'
1111
# allow failures
12-
- '3.5-dev'
13-
- '3.6-dev'
1412
- 'nightly'
1513
- 'pypy'
1614
- 'pypy3'
1715

1816
matrix:
1917
fast_finish: true
2018
allow_failures:
21-
- python: '3.5-dev'
22-
- python: '3.6-dev'
2319
- python: 'nightly'
2420
- python: 'pypy'
2521
- python: 'pypy3'

‎pylatex/table.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ class LongTable(Tabular):
455455

456456
header = False
457457
foot = False
458-
lastFoot = False
458+
lastFoot = False # noqa, casing is needed for backwards compatibility
459459

460460
def end_table_header(self):
461461
r"""End the table header which will appear on every page."""

‎setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ parentdir_prefix = PyLaTeX-
1515
# Whitespace around arithmetic operators is not manditory, sometimes no
1616
# whitespace makes precedence clearer.
1717
[flake8]
18-
ignore = D105,D202,D203,D413,E226
18+
ignore = D105,D202,D203,D413,E226,D205,D400
1919
putty-ignore =
2020
# Stuff is exported in the __init__ files so ignore unused imports
2121
*/__init__.py : +F401

0 commit comments

Comments
 (0)
Please sign in to comment.