From b2ae57795fec9a3e823ed75a0dd6695ab73d6717 Mon Sep 17 00:00:00 2001 From: Jirka Borovec Date: Tue, 7 Apr 2020 15:49:38 +0200 Subject: [PATCH] add pypi user (#1401) * add pypi user * changelog * changelog --- .github/workflows/{pypi_release.yml => pypi-release.yml} | 4 +++- CHANGELOG.md | 2 +- MANIFEST.in | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) rename .github/workflows/{pypi_release.yml => pypi-release.yml} (92%) diff --git a/.github/workflows/pypi_release.yml b/.github/workflows/pypi-release.yml similarity index 92% rename from .github/workflows/pypi_release.yml rename to .github/workflows/pypi-release.yml index c3c45fcec2..34b45e1b4a 100644 --- a/.github/workflows/pypi_release.yml +++ b/.github/workflows/pypi-release.yml @@ -10,7 +10,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3.7] + python-version: [3.6, 3.7] steps: - uses: actions/checkout@master @@ -31,6 +31,7 @@ jobs: if: startsWith(github.event.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@master with: + user: __token__ password: ${{ secrets.test_pypi_password }} repository_url: https://test.pypi.org/legacy/ @@ -38,4 +39,5 @@ jobs: if: startsWith(github.event.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@master with: + user: __token__ password: ${{ secrets.pypi_password }} diff --git a/CHANGELOG.md b/CHANGELOG.md index f62ef920a9..81d18a7d49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). -## [unreleased] - YYYY-MM-DD +## [0.7.2] - 2020-04-07 ### Added diff --git a/MANIFEST.in b/MANIFEST.in index 323b54dfd7..9f80983d5c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,7 +3,7 @@ graft wheelhouse recursive-exclude __pycache__ *.py[cod] *.orig -# Include the README +# Include the README and CHANGELOG include *.md # Include the license file