Skip to content

Commit

Permalink
Merge pull request #24 from mkmkme/mkmkme/minor-changes
Browse files Browse the repository at this point in the history
Small CI fixes and update to v4.0.1b2
  • Loading branch information
mkmkme authored Oct 29, 2024
2 parents 9391be1 + 567230b commit a85254f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/pypi-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Build sdist
run: |
python3 setup.py sdist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: source-dist
path: ./dist/*.tar.gz
Expand All @@ -34,7 +34,7 @@ jobs:
os: [ubuntu-20.04, windows-2019, macos-latest]
env:
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
MACOSX_DEPLOYMENT_TARGET: "10.15"
MACOSX_DEPLOYMENT_TARGET: "11.0"
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -53,7 +53,7 @@ jobs:
# emulated ones
CIBW_ARCHS_LINUX: auto aarch64 ppc64le s390x

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: ${{matrix.os}}-wheels
path: ./wheelhouse/*.whl
Expand All @@ -66,19 +66,19 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: ubuntu-20.04-wheels
path: artifacts/linux
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: windows-2019-wheels
path: artifacts/windows
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: macos-latest-wheels
path: artifacts/macos
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: source-dist
path: artifacts/sdist
Expand Down
2 changes: 1 addition & 1 deletion libvalkey/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "4.0.1b1"
__version__ = "4.0.1b2"

0 comments on commit a85254f

Please sign in to comment.