Skip to content

Commit 0853339

Browse files
authored
Task CS-2206: PyDomainExtractor | prevent publishing of source dist
2 parents 174a6c6 + 5c784f5 commit 0853339

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ jobs:
5050
uses: PyO3/maturin-action@v1
5151
with:
5252
command: publish
53-
args: --username=__token__ --interpreter=python${{ matrix.python-version }} --target=x86_64-apple-darwin
53+
args: --username=__token__ --interpreter=python${{ matrix.python-version }} --target=x86_64-apple-darwin --no-sdist
5454
env:
5555
MATURIN_PASSWORD: ${{ secrets.pypi_password }}
5656
- name: Publish macOS (arm64) Package
5757
if: matrix.os == 'macos-latest'
5858
uses: PyO3/maturin-action@v1
5959
with:
6060
command: publish
61-
args: --username=__token__ --interpreter=python${{ matrix.python-version }} --target=aarch64-apple-darwin
61+
args: --username=__token__ --interpreter=python${{ matrix.python-version }} --target=aarch64-apple-darwin --no-sdist
6262
env:
6363
MATURIN_PASSWORD: ${{ secrets.pypi_password }}

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pydomainextractor"
3-
version = "0.13.2"
3+
version = "0.13.3"
44
authors = ["Gal Ben David <gal@intsights.com>"]
55
edition = "2021"
66
description = "A blazingly fast domain extraction library written in Rust"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pydomainextractor"
3-
version = "0.13.2"
3+
version = "0.13.3"
44
description = "A blazingly fast domain extraction library written in Rust"
55
authors = [
66
{email = "gal@intsights.com"},

0 commit comments

Comments
 (0)