Skip to content

Pin Faker to Prevent Asteroid Crash and Fix CI #300

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
dist: xenial
language: python
python:
- 3.5
- 3.6
- 3.7
- 3.8
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
install_requires=[
'pylint-plugin-utils>=0.5',
'pylint>=2.0',
'Faker==5.0.1',
],
extras_require={
'with_django': ['Django'],
Expand All @@ -31,7 +32,6 @@
'Operating System :: Unix',
'Topic :: Software Development :: Quality Assurance',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ envlist =
pylint
readme
py{36}-django{111,20,-master}
py{35,36,37}-django22
py{36,37}-django22
py{36,37,38}-django{30,31}

[testenv]
Expand All @@ -20,7 +20,7 @@ commands =
pylint: pylint --rcfile=tox.ini -d missing-docstring,too-many-branches,too-many-return-statements,too-many-ancestors,fixme --ignore=tests pylint_django setup
readme: bash -c \'python setup.py -q sdist && twine check dist/*\'
py{36}-django{111,20,-master}: coverage run pylint_django/tests/test_func.py -v
py{35,36,37}-django22: coverage run pylint_django/tests/test_func.py -v
py{36,37}-django22: coverage run pylint_django/tests/test_func.py -v
py{36,37,38}-django{30,31}: coverage run pylint_django/tests/test_func.py -v
clean: find . -type f -name '*.pyc' -delete
clean: find . -type d -name __pycache__ -delete
Expand All @@ -47,7 +47,7 @@ whitelist_externals =
django_not_installed: bash
readme: bash
py{36}-django{111,20,-master}: coverage
py{35,36,37}-django22: coverage
py{36,37}-django22: coverage
py{36,37,38}-django{30,31}: coverage
clean: find
clean: rm
Expand Down