mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2026-02-12 16:10:57 +00:00
Template updates post ssz and ethabi (#82)
* add updates found when merging template with py-ssz and eth-abi * add wheel and wheel-windows to ci and reorg
This commit is contained in:
31
tox.ini
31
tox.ini
@ -2,6 +2,8 @@
|
||||
envlist=
|
||||
py{37,38,39,310,311}-core
|
||||
py{37,38,39,310,311}-lint
|
||||
py{37,38,39,310,311}-wheel
|
||||
py311-wheel-windows
|
||||
docs
|
||||
|
||||
[isort]
|
||||
@ -54,3 +56,32 @@ commands: {[common-lint]commands}
|
||||
[testenv:py{37,38,39,310,311}-lint]
|
||||
extras: {[common-lint]extras}
|
||||
commands: {[common-lint]commands}
|
||||
|
||||
[testenv:py{37,38,39,310,311}-wheel]
|
||||
deps=
|
||||
wheel
|
||||
build[virtualenv]
|
||||
allowlist_externals=
|
||||
/bin/rm
|
||||
/bin/bash
|
||||
commands=
|
||||
python -m pip install --upgrade pip
|
||||
/bin/rm -rf build dist
|
||||
python -m build
|
||||
/bin/bash -c 'python -m pip install --upgrade "$(ls dist/<MODULE_NAME>-*-py3-none-any.whl)" --progress-bar off'
|
||||
python -c "import <MODULE_NAME>"
|
||||
skip_install=true
|
||||
|
||||
[testenv:py311-wheel-windows]
|
||||
deps=
|
||||
wheel
|
||||
build[virtualenv]
|
||||
allowlist_externals=
|
||||
bash.exe
|
||||
commands=
|
||||
python -m pip install --upgrade pip
|
||||
bash.exe -c "rm -rf build dist"
|
||||
python -m build
|
||||
bash.exe -c 'python -m pip install --upgrade "$(ls dist/<MODULE_NAME>-*-py3-none-any.whl)" --progress-bar off'
|
||||
python -c "import <MODULE_NAME>"
|
||||
skip_install=true
|
||||
|
||||
Reference in New Issue
Block a user