Skip to content

Commit b0aeb53

Browse files
committed
disables pypi release
1 parent 2832e5d commit b0aeb53

File tree

6 files changed

+175
-222
lines changed

6 files changed

+175
-222
lines changed

.github/workflows/codspeed.yml

Lines changed: 0 additions & 52 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ jobs:
2020
platform: linux
2121
- os: windows
2222
ls: dir
23-
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 pypy3.8 pypy3.9 pypy3.10
23+
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 3.13 pypy3.8 pypy3.9 pypy3.10
2424
- os: windows
2525
ls: dir
2626
target: aarch64
2727
interpreter: 3.11 3.12
2828
- os: macos
2929
target: aarch64
30-
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 pypy3.8 pypy3.9 pypy3.10
30+
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 3.13 pypy3.8 pypy3.9 pypy3.10
3131
- os: ubuntu
3232
platform: linux
3333
target: aarch64
@@ -45,13 +45,13 @@ jobs:
4545
- os: ubuntu
4646
platform: linux
4747
target: ppc64le
48-
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12
48+
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 3.13
4949
# mimalloc not supported on manylinux2014 cross-compile container
5050
extra-build-args: --no-default-features
5151
- os: ubuntu
5252
platform: linux
5353
target: s390x
54-
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12
54+
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 3.13
5555
# mimalloc not supported on manylinux2014 cross-compile container
5656
extra-build-args: --no-default-features
5757

@@ -71,7 +71,7 @@ jobs:
7171
target: ${{ matrix.target }}
7272
manylinux: ${{ matrix.manylinux || 'auto' }}
7373
container: ${{ matrix.container }}
74-
args: --release --out dist --interpreter ${{ matrix.interpreter || '3.7 3.8 3.9 3.10 3.11 3.12 pypy3.7 pypy3.8 pypy3.9 pypy3.10' }} ${{ matrix.extra-build-args }}
74+
args: --release --out dist --interpreter ${{ matrix.interpreter || '3.7 3.8 3.9 3.10 3.11 3.12 3.13 pypy3.7 pypy3.8 pypy3.9 pypy3.10' }} ${{ matrix.extra-build-args }}
7575
rust-toolchain: stable
7676
docker-options: -e CI
7777

@@ -138,8 +138,8 @@ jobs:
138138
draft: false
139139
prerelease: steps.check-version.outputs.prerelease == 'true'
140140

141-
- name: Publish to PyPI
142-
env:
143-
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
144-
run: |
145-
poetry publish
141+
# - name: Publish to PyPI
142+
# env:
143+
# POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
144+
# run: |
145+
# poetry publish

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@ lint-rust:
1616
format-rust:
1717
cd rust && cargo fmt --all
1818
cd rust && cargo clippy --tests --fix --allow-dirty -- -D warnings
19+
20+
dev:
21+
poetry install

0 commit comments

Comments
 (0)