From 5d7188f246081beef80b08b46828eb5ddc1b5260 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Valyi?= Date: Sat, 29 Jun 2024 23:52:04 +0000 Subject: [PATCH] bye bye tox --- tox.ini | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 tox.ini diff --git a/tox.ini b/tox.ini deleted file mode 100644 index acde88a..0000000 --- a/tox.ini +++ /dev/null @@ -1,40 +0,0 @@ -[tox] -# isolated_build = True -envlist = py38,py39,py310,py311,py312,pypy3 -skip_missing_interpreters = true - -[testenv] -extras = test -commands = - pytest --cov=./nfelib --cov-report=xml - -[testenv:build] -basepython = python3.8 -skip_install = true -deps = - wheel - setuptools - twine -whitelist_externals = rm -commands = - rm -fr dist - python setup.py bdist_wheel sdist - twine check dist/* - -[testenv:release] -basepython = python3 -skip_install = true -deps = {[testenv:build]deps} -commands_pre = - {[testenv:build]commands} -commands = - twine upload --skip-existing dist/* - -[testenv:testrelease] -basepython = python3 -skip_install = true -deps = {[testenv:build]deps} -commands_pre = - {[testenv:build]commands} -commands = - twine upload --repository-url https://upload.pypi.org/legacy/ --skip-existing .tox/dist/*