Skip to content

Commit 1f1e3e4

Browse files
fix: pyproject.toml to exclude data as functime is 235 MB (>100 MB PyPI limit)
1 parent 370cf2b commit 1f1e3e4

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,8 @@ jobs:
120120

121121
- name: Publish to PyPI
122122
uses: pypa/gh-action-pypi-publish@release/v1
123+
with:
124+
skip-existing: true
123125

124126
draft-notes:
125127
runs-on: ubuntu-latest

pyproject.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,13 @@ benchmark = [
105105
[tool.maturin]
106106
module-name = "functime._functime_rust"
107107
features = ["pyo3/extension-module"]
108-
exclude = ["docs/**, data/**", "tests/**", ".pre-commit-config.yaml"]
108+
exclude = [
109+
"data/**",
110+
"docs/**",
111+
"site/**",
112+
"tests/**",
113+
".pre-commit-config.yaml",
114+
]
109115

110116
[tool.ruff]
111117
extend-include = ["*.ipynb"]

0 commit comments

Comments
 (0)