File tree Expand file tree Collapse file tree 6 files changed +35
-21
lines changed
Expand file tree Collapse file tree 6 files changed +35
-21
lines changed Original file line number Diff line number Diff line change 11version : 2
22updates :
3+ - package-ecosystem : " github-actions"
4+ directory : " /"
5+ schedule :
6+ interval : daily
7+ time : " 08:00"
8+ timezone : " America/Mexico_City"
9+ open-pull-requests-limit : 5
10+ reviewers :
11+ - " cuenca-mx/admin"
12+
313- package-ecosystem : pip
414 directory : " /"
515 schedule :
616 interval : daily
7- time : ' 11:00'
8- open-pull-requests-limit : 10
17+ time : " 08:00"
18+ timezone : " America/Mexico_City"
19+ open-pull-requests-limit : 5
20+ reviewers :
21+ - " cuenca-mx/admin"
Original file line number Diff line number Diff line change @@ -12,11 +12,14 @@ venv:
1212 $(PYTHON ) -m venv --prompt $(PROJECT ) venv
1313 pip install -qU pip
1414
15- install-test :
16- pip install -q .[test]
15+ install :
16+ pip install -qU -r requirements.txt
17+
18+ install-test : install
19+ pip install -qU -r requirements-test.txt
1720
1821test : clean install-test lint
19- python setup.py test
22+ pytest
2023
2124format :
2225 $(isort )
4346 rm -rf build
4447 rm -rf dist
4548
46- release : clean
49+ release : test clean
4750 python setup.py sdist bdist_wheel
4851 twine upload dist/*
4952
Original file line number Diff line number Diff line change 1- __version__ = '0.2.3 '
1+ __version__ = '0.2.4 '
22CLIENT_VERSION = __version__
33API_VERSION = '2020-03-19'
Original file line number Diff line number Diff line change 1+ pytest==5.4.*
2+ pytest-cov==2.10.*
3+ pytest-vcr==1.0.*
4+ black==19.10b0
5+ isort==5.0.*
6+ flake8==3.8.*
7+ mypy==0.782
Original file line number Diff line number Diff line change 1+ requests == 2.24.0
2+ cuenca-validations == 0.4.3
3+ dataclasses >= 0.7 ;python_version < "3.7"
Original file line number Diff line number Diff line change 44
55version = SourceFileLoader ('version' , 'cuenca/version.py' ).load_module ()
66
7- test_requires = [
8- 'pytest==5.4.3' ,
9- 'pytest-cov==2.10.0' ,
10- 'pytest-vcr==1.0.2' ,
11- 'black==19.10b0' ,
12- 'isort==5.0.*' ,
13- 'flake8==3.8.3' ,
14- 'mypy==0.782' ,
15- ]
167
178with open ('README.md' , 'r' ) as f :
189 long_description = f .read ()
3223 package_data = dict (cuenca = ['py.typed' ]),
3324 python_requires = '>=3.6' ,
3425 install_requires = [
35- 'requests== 2.24.0 ' ,
36- 'cuenca-validations== 0.4.3 ' ,
26+ 'requests>= 2.24,<2.25 ' ,
27+ 'cuenca-validations>= 0.4,<0.5 ' ,
3728 'dataclasses>=0.7;python_version<"3.7"' ,
3829 ],
39- setup_requires = ['pytest-runner' ],
40- tests_require = test_requires ,
41- extras_require = dict (test = test_requires ),
4230 classifiers = [
4331 'Programming Language :: Python :: 3' ,
4432 'Programming Language :: Python :: 3.6' ,
You can’t perform that action at this time.
0 commit comments