Skip to content

Commit

Permalink
[CI] Fix sdist filename
Browse files Browse the repository at this point in the history
  • Loading branch information
tttapa committed Jan 24, 2022
1 parent 30f5f29 commit 004fd02
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:
path: dist
- name: Upload source to PyPI
if: ${{ matrix.python-version == '3.10' }}
run: python -m twine upload dist/py_build_cmake-*.tar.gz
run: python -m twine upload dist/py-build-cmake-*.tar.gz
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PyPI }}
2 changes: 1 addition & 1 deletion examples/pybind11-project/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.20)
project(py-build-cmake VERSION 0.0.0)
set(PY_VERSION_SUFFIX "a0")
set(PY_VERSION_SUFFIX "a1")
set(PY_FULL_VERSION ${PROJECT_VERSION}${PY_VERSION_SUFFIX})

# Make sure that the Python and CMake versions match
Expand Down
2 changes: 1 addition & 1 deletion examples/pybind11-project/src/pybind11_project/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Example project using the py-build-cmake build backend and pybind11."""
__version__ = '0.0.0a0'
__version__ = '0.0.0a1'
2 changes: 1 addition & 1 deletion src/py_build_cmake/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Modern, PEP 517 compliant build backend for building Python packages with
extensions built using CMake.
"""
__version__ = '0.0.0a0'
__version__ = '0.0.0a1'

0 comments on commit 004fd02

Please sign in to comment.