Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add PEP 561 compliance check
  • Loading branch information
PGijsbers committed Oct 30, 2020
commit 76d5c7c4e2a29b6b9ee93cd7c7623ec4d7221b8e
5 changes: 5 additions & 0 deletions .github/workflows/dist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,8 @@ jobs:
run: |
last_dist=$(ls -t dist/openml-*.tar.gz | head -n 1)
pip install $last_dist
- name: PEP 561 Compliance
Comment thread
mfeurer marked this conversation as resolved.
run: |
pip install mypy
cd .. # required to use the installed version of openml
if ! python -m mypy -c "import openml"; then exit 1; fi