We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50c518f commit 24fc5a6Copy full SHA for 24fc5a6
.travis.yml
@@ -1,5 +1,11 @@
1
os: linux
2
dist: focal
3
+addons:
4
+ apt:
5
+ update: true
6
+ packages:
7
+ - python3-numpy # TEMPORARY: Just for Python 3.9-rc2
8
+
9
language: python
10
python: 3.9-dev
11
cache: pip
@@ -12,7 +18,6 @@ jobs:
12
18
- black --check . || true
13
19
- flake8 --ignore=E203,W503 --max-complexity=25 --max-line-length=88 --statistics --count .
14
20
- scripts/validate_filenames.py # no uppercase, no spaces, in a directory
15
- - apt-get install python3-numpy # TEMPORARY: Just for Python 3.9-rc2
16
21
- pip install -r requirements.txt # fast fail on black, flake8, validate_filenames
17
22
script:
23
- mypy --ignore-missing-imports . || true # https://github.com/python/mypy/issues/7907
0 commit comments