Skip to content
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

ci: Unpin Unexecuted Dependencies #1548

Merged
merged 1 commit into from
Jul 10, 2020
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/python-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
python-version: '3.7'
- name: Install Dependencies
run: |
pip install black==19.10b0 PyYAML==5.1.2 requests==2.22.0
pip install black==19.10b0
- name: black **/*.py --line-length 100 --check --diff
run: |
black **/*.py --line-length 100 --check --diff
Expand All @@ -42,7 +42,7 @@ jobs:
echo "::add-matcher::.github/matchers/${{ github.job }}.json"
- name: Install Dependencies
run: | # TODO: Update pylint version to one that natively caps isort dependency
pip install pylint==2.2.3 isort==4.3.21 PyYAML==5.1.2 requests==2.22.0
pip install pylint==2.2.3 isort==4.3.21 PyYAML requests
- name: pylint **/*.py --errors-only
run: |
pylint **/*.py --errors-only