Skip to content

Commit a95783a

Browse files
authored
Merge branch 'mainline' into moorec/pin-click
2 parents d54af31 + 18182db commit a95783a

File tree

5 files changed

+28
-4
lines changed

5 files changed

+28
-4
lines changed

.github/workflows/release_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
ref: ${{ needs.TagRelease.outputs.tag }}
7979
fetch-depth: 0
8080
- name: Set up Python
81-
uses: actions/setup-python@v5
81+
uses: actions/setup-python@v6
8282
with:
8383
python-version: '3.9'
8484
- name: Install dependencies

.github/workflows/responded.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: Contributor Responded
2+
on:
3+
issue_comment:
4+
types: [created, edited]
5+
6+
jobs:
7+
check-for-response:
8+
uses: OpenJobDescription/.github/.github/workflows/reusable_responded.yml@mainline
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: 'Check stale issues/PRs.'
2+
on:
3+
schedule:
4+
# Run every hour on the hour
5+
- cron: '0 * * * *'
6+
7+
jobs:
8+
check-for-stales:
9+
uses: OpenJobDescription/.github/.github/workflows/reusable_stale_prs_and_issues.yml@mainline

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 0.8.4 (2025-09-12)
2+
3+
4+
5+
### Bug Fixes
6+
* improve error reporting when allowedValues is set to None (#184) ([`3b9c703`](https://github.com/OpenJobDescription/openjd-model-for-python/commit/3b9c7036654ad724e806d5404701fea7990cc06f))
7+
18
## 0.8.3 (2025-08-18)
29

310

requirements-testing.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
coverage[toml] == 7.*
22
pytest == 8.4.*
3-
pytest-cov == 6.2.*
3+
pytest-cov == 7.0.*
44
pytest-timeout == 2.4.*
55
pytest-xdist == 3.8.*
66
types-PyYAML ~= 6.0
77
black == 25.*
8-
ruff == 0.12.*
9-
mypy == 1.17.*
8+
ruff == 0.13.*
9+
mypy == 1.18.*

0 commit comments

Comments
 (0)