Skip to content

Commit d1ba5f1

Browse files
authored
Merge branch 'main' into better_sampling
2 parents f682de8 + 2f16751 commit d1ba5f1

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: uv sync
2727
- name: Run tests
2828
run: uv run pytest
29-
- name: Configure PyPI token
30-
run: uv config pypi-token.pypi "${{ secrets.PYPI_API_KEY }}"
31-
- name: Publish package
32-
run: uv publish --build
29+
- name: Build and publish package
30+
run: uv build && uv publish
31+
env:
32+
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_API_KEY }}

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ requires-python = ">=3.11"
1010
readme = "README.md"
1111
license = "Apache-2.0"
1212
dependencies = [
13-
"numpy>=2.3.4,<3",
14-
"scipy>=1.16.2,<2",
15-
"pandas>=2.3.3,<3",
13+
"numpy>=1.24,<3",
14+
"scipy>=1.10,<2",
15+
"pandas>=2.0,<3",
1616
"joblib>=1.4.0,<2",
1717
]
1818

@@ -26,7 +26,7 @@ dev = [
2626
]
2727
notebook = [
2828
"marimo>=0.17.0",
29-
"matplotlib>=3.10.7",
29+
"matplotlib>=3.8.0",
3030
]
3131

3232
[build-system]

uv.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)