Skip to content
Snippets Groups Projects
Select Git revision
  • 4bf6721554d486262c57223f0ce4d92b524d6bfe
  • master default
  • netaddr
  • ft/in-place
  • ft/run
  • v0.7.6
  • v0.7.5
  • v0.7.4
  • v0.7.3
  • v0.7.2
  • v0.7.1
  • v0.7.0
  • v0.6.6
  • v0.6.5
  • v0.6.4
  • v0.6.3
  • v0.6.2
  • v0.6.1
  • v0.6.0
  • v0.5.1
  • v0.5.0
  • v0.4.8
  • v0.4.7
  • v0.4.6
  • v0.4.4
25 results

tox.ini

Blame
  • tox.ini 463 B
    [tox]
    envlist = py{2,3}
    
    [testenv]
    basepython =
        py2: python2
        py3: python3
    deps =
        check-manifest
        readme_renderer
        flake8
    commands =
        check-manifest --ignore tox.ini,tests*
        python setup.py check -m -r -s
        flake8 .
    
    [testenv:release]
    basepython = python
    whitelist_externals =
        sh
    deps =
        twine
        wheel
    commands =
        sh -c 'git tag -f "$(cat VERSION)"'
        python setup.py bdist_wheel
    #   twine upload --skip-existing dist/*.whl