From d616eb51829357e3db93f254b3761f0b014ccec5 Mon Sep 17 00:00:00 2001 From: Federico Caselli Date: Sat, 8 Aug 2020 01:15:17 +0200 Subject: [PATCH] chore(wheels): add upload sdist 2 --- .github/workflows/create-wheels.yaml | 6 +++--- setup.py | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/create-wheels.yaml b/.github/workflows/create-wheels.yaml index 610ac6771..812e3cc9e 100644 --- a/.github/workflows/create-wheels.yaml +++ b/.github/workflows/create-wheels.yaml @@ -244,7 +244,7 @@ jobs: twine upload --skip-existing dist/*manylinux* make-source-dist: - name: ${{ matrix.python-version }}-${{ matrix.architecture }}-${{ matrix.os }} + name: sdist-${{ matrix.python-version }}-${{ matrix.architecture }}-${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: @@ -278,8 +278,8 @@ jobs: python -m pip install --upgrade pip pip --version pip install setuptools>=44 wheel>=0.34 cython>=0.29.21 - python setup.py build_ext --inplace - python .\setup.py sdist --dist-dir dist + cythonize -3 falcon/**/*.pyx + python setup.py sdist --dist-dir dist - name: Get sdist name id: sdist-name diff --git a/setup.py b/setup.py index 52c666082..199e1e7f4 100644 --- a/setup.py +++ b/setup.py @@ -153,7 +153,6 @@ def load_description(): 'Operating System :: POSIX', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP :: WSGI', - 'Topic :: Internet :: WWW/HTTP :: ASGI', 'Topic :: Software Development :: Libraries :: Application Frameworks', 'Programming Language :: Python', 'Programming Language :: Python :: Implementation :: CPython',