Skip to content

Commit 9b58d32

Browse files
authored
Merge pull request #117 from chrishavlin/add_workflow_dispatches
add workflow dispatches to some of the tests
2 parents 377c0b2 + 6ef3c07 commit 9b58d32

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.github/workflows/check-build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
name: Check Build
2-
on: pull_request
2+
on:
3+
pull_request:
4+
workflow_dispatch:
35

46
jobs:
57
twinecheck:

.github/workflows/check-manifest.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: check MANIFEST.in
22
on:
3-
pull_request
3+
pull_request:
4+
workflow_dispatch:
45

56
jobs:
67
check-manifest:

.github/workflows/run-pytest-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Run tests
22

3-
on: [pull_request]
3+
on:
4+
pull_request:
5+
workflow_dispatch:
46

57
jobs:
68
test:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ classifiers = [
2020
"Programming Language :: Python :: 3.11",
2121
"Programming Language :: Python :: 3.12",
2222
]
23-
dependencies=['yt>=4.2.0', 'h5py>=3.4.0', 'pooch>=1.5.1', 'xarray']
23+
dependencies=['yt>=4.2.0', 'h5py>=3.4.0', 'pooch>=1.5.1', 'xarray!=v2025.06.0']
2424
dynamic = ["version"]
2525

2626
[project.urls]

0 commit comments

Comments
 (0)