We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Check out python-poetry/poetry#366
The text was updated successfully, but these errors were encountered:
Start with:
language: python python: - 3.5 before_install: - pip install poetry install: - poetry install -v
Sorry, something went wrong.
A full example (https://wrongsideofmemphis.com/2018/10/28/package-and-deploy-a-python-module-in-pypi-with-poetry-tox-and-travis/):
language: python python: - '2.7' - '3.5' - '3.6' matrix: include: - python: 3.7 dist: xenial before_install: - pip install poetry install: - poetry install -v - pip install tox-travis script: - tox before_deploy: - poetry config http-basic.pypi $PYPI_USER $PYPI_PASSWORD - poetry build deploy: provider: script script: poetry publish on: tags: true condition: "$TRAVIS_PYTHON_VERSION == 3.7" env: global: - secure: [REDACTED] - secure: [REDACTED]
No branches or pull requests
Check out python-poetry/poetry#366
The text was updated successfully, but these errors were encountered: