Skip to content
Snippets Groups Projects
Select Git revision
  • 8cf4c056b80f408c52ef516c8f275e67c3ee61fa
  • master default
2 results

Dockerfile

Blame
    • nimrod's avatar
      8cf4c056
      Small changes. · 8cf4c056
      nimrod authored
      - gpg2 to gpg wrapper (backward compatibility).
      - Remove /keybase (forgot to remove it when I removed keybase).
      - Remove broad sudo access. I don't think it's required and I don't like
        having it.
      8cf4c056
      History
      Small changes.
      nimrod authored
      - gpg2 to gpg wrapper (backward compatibility).
      - Remove /keybase (forgot to remove it when I removed keybase).
      - Remove broad sudo access. I don't think it's required and I don't like
        having it.
    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