Skip to content

Commit e04286f

Browse files
committed
➖ Removed twine
1 parent ec45751 commit e04286f

File tree

4 files changed

+3
-12
lines changed

4 files changed

+3
-12
lines changed

.github/workflows/build.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,6 @@ jobs:
4444
run: |
4545
uv build
4646
47-
- name: Check Package
48-
run: |
49-
uv run twine check --strict dist/*.whl
50-
5147
- name: Store Wheel Artifacts
5248
uses: actions/upload-artifact@v4
5349
with:

.github/workflows/release.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,12 @@ jobs:
3838
3939
- name: Install Dependencies
4040
run: |
41-
uv sync --all-extras
41+
uv sync
4242
4343
- name: Build Package
4444
run: |
4545
uv build
4646
47-
- name: Check Package
48-
run: |
49-
uv run twine check --strict dist/*.whl
50-
5147
- name: Store Wheel Artifacts
5248
uses: actions/upload-artifact@v4
5349
with:

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
fail-fast: false
2929
matrix:
30-
python-version: ["3.11", "3.12"]
30+
python-version: ["3.10", "3.11", "3.12"]
3131
os: ["ubuntu-latest"]
3232

3333
name: Python ${{ matrix.python-version }}
@@ -52,7 +52,7 @@ jobs:
5252
5353
- name: Install Dependencies
5454
run: |
55-
uv sync --all-extras
55+
uv sync --extra test
5656
5757
- name: Test
5858
env:

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ optional-dependencies.dev = [
3333
"esbonio>=0.16.5",
3434
"pre-commit",
3535
"scanpy>=1.10.3",
36-
"twine>=5.1.1",
3736
]
3837
optional-dependencies.doc = [
3938
"docutils>=0.21.2",

0 commit comments

Comments
 (0)