diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index 3aab45a..a8e10c3 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -24,7 +24,7 @@ jobs: run: python setup.py sdist bdist_wheel - name: Publish to PyPI - uses: pypa/gh-action-pypi-publish@master + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_UPLOAD_TOKEN }} diff --git a/setup.py b/setup.py index f2c06b8..eb5c0f9 100644 --- a/setup.py +++ b/setup.py @@ -82,8 +82,10 @@ def is_requirement(line): setup( name='concept-xblock', - version='0.3.0', + version='0.3.2', description='concept XBlock', # TODO: write a better description. + long_description=open('README.md', encoding='utf-8').read(), # pylint: disable=consider-using-with + long_description_content_type='text/markdown', packages=[ 'concept', ],