Skip to content

Commit 7e28383

Browse files
authored
another one bites the dust! (#28)
* another one bites the dust! FAMSA is no more * bump version for removing FAMSA * upgrade isort
1 parent ce7986b commit 7e28383

5 files changed

Lines changed: 10 additions & 15 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ SHELL := bash
22
PATH := ./venv/bin:${PATH}
33
PYTHON = python3.7
44
PROJECT = clabe
5-
isort = isort -rc -ac $(PROJECT) tests setup.py
5+
isort = isort $(PROJECT) tests setup.py
66
black = black -S -l 79 --target-version py38 $(PROJECT) tests setup.py
77

88

clabe/banks.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
'127': '40127',
1414
'030': '40030',
1515
'002': '40002',
16-
'131': '40131',
1716
'154': '40154',
1817
'006': '37006',
1918
'137': '40137',
@@ -110,7 +109,6 @@
110109
'40127': 'Azteca',
111110
'40030': 'Bajio',
112111
'40002': 'Banamex',
113-
'40131': 'Banco Famsa',
114112
'40154': 'Banco Finterra',
115113
'37006': 'Bancomext',
116114
'40137': 'Bancoppel',

clabe/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.2.1'
1+
__version__ = '1.2.2'

setup.cfg

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,8 @@ inline-quotes = '
99
multiline-quotes = """
1010
1111
[isort]
12-
multi_line_output=3
13-
include_trailing_comma=True
14-
force_grid_wrap=0
15-
combine_as_imports=True
12+
profile=black
13+
line_length=79
1614
1715
[mypy-pytest]
1816
ignore_missing_imports = True

setup.py

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,12 @@
66

77

88
test_requires = [
9-
'pytest',
10-
'coverage<5',
11-
'pytest-cov',
12-
'black',
13-
'isort[pipfile]',
14-
'flake8',
15-
'mypy',
9+
'pytest==5.4.3',
10+
'pytest-cov==2.10.0',
11+
'black==19.10b0',
12+
'isort==5.0.4',
13+
'flake8==3.8.3',
14+
'mypy==0.782',
1615
]
1716

1817
with open('README.md', 'r') as f:

0 commit comments

Comments
 (0)