mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
e21c4f0e9e
closes #5484
37 lines
804 B
YAML
37 lines
804 B
YAML
distributable:
|
|
url: https://github.com/python/mypy/archive/refs/tags/{{version.tag}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: python/mypy/tags
|
|
|
|
dependencies:
|
|
pkgx.sh: ^1
|
|
|
|
build:
|
|
dependencies:
|
|
python.org: '>=3<3.12'
|
|
env:
|
|
MYPY_USE_MYPYC: 1
|
|
MYPYC_OPT_LEVEL: 3
|
|
script:
|
|
- bkpyvenv stage {{prefix}} {{version}}
|
|
- ${{prefix}}/venv/bin/pip install .
|
|
- bkpyvenv seal {{prefix}} mypy
|
|
- run: |
|
|
ln -s mypy mypyc
|
|
ln -s mypy dmypy
|
|
working-directory: '{{prefix}}/bin'
|
|
|
|
provides:
|
|
- bin/mypy
|
|
- bin/mypyc
|
|
- bin/dmypy
|
|
|
|
test:
|
|
- mypy --version | grep {{version}}
|
|
- mypyc --version | grep {{version}}
|
|
- dmypy --version | grep {{version}}
|
|
- run: echo $(mypy $FIXTURE || true) | grep "Incompatible types in assignment"
|
|
fixture: 'a: str = 1'
|