From 14825299c22de631ac7eab647fd2586098c8c331 Mon Sep 17 00:00:00 2001 From: Irtaza Akram <51848298+irtazaakram@users.noreply.github.com> Date: Tue, 24 Oct 2023 16:40:26 +0500 Subject: [PATCH] fix: pypi build issues (#372) --- .github/workflows/pypi-publish.yml | 2 +- edx_lint/__init__.py | 2 +- setup.cfg | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index 8bbadf15..92bb4da5 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -25,7 +25,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/edx_lint/__init__.py b/edx_lint/__init__.py index 5b858ce8..ca0d1b3d 100644 --- a/edx_lint/__init__.py +++ b/edx_lint/__init__.py @@ -2,4 +2,4 @@ edx_lint standardizes lint configuration and additional plugins for use in Open edX code. """ -__version__ = "5.3.5" +__version__ = "5.3.6" diff --git a/setup.cfg b/setup.cfg index 9151afed..8b90005e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,8 @@ name = edx-lint version = attr: edx_lint.VERSION summary = edX-authored pylint checkers description_file = README.rst +long_description = file: README.rst +long_description_content_type = text/x-rst url = https://github.com/openedx/edx-lint author = edX author_email = oscm@edx.org