From a1cd5faab09e642d4c0692474790ca737a271baf Mon Sep 17 00:00:00 2001 From: Sergei Izmailov Date: Tue, 29 Aug 2023 22:27:04 +0900 Subject: [PATCH] chore: Fix packaging --- .github/workflows/deploy.yml | 7 +------ setup.py | 1 + 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7612f1c..8b1451a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,18 +12,13 @@ jobs: name: Build distributions runs-on: ubuntu-latest - strategy: - matrix: - python: - - 3.8 - steps: - uses: actions/checkout@v2 - name: Setup Python ${{ matrix.python }} uses: actions/setup-python@v2 with: - python-version: ${{ matrix.python }} + python-version: "3.10" - name: Build dist run: pipx run build --sdist --wheel diff --git a/setup.py b/setup.py index a52a48c..ccbd557 100644 --- a/setup.py +++ b/setup.py @@ -8,6 +8,7 @@ url="https://github.com/sizmailov/pybind11-stubgen", version="1.0-dev.1", long_description=open("README.md").read(), + long_description_content_type="text/markdown", license="BSD", entry_points={ "console_scripts": "pybind11-stubgen = pybind11_stubgen.__init__:main"