Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/beta_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ body:
attributes:
label: Version
description: Please specify the version of the Activity Browser you are using.
placeholder: e.g. 3.0.0b940
placeholder: e.g. 3.0.0b202503221430 (from About / pip show)
- type: dropdown
id: distribution
attributes:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/python-package-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: "0"
# PEP 440 beta: 3.0.0b + YYYYMMDDHHMM (UTC). Sortable; no hyphens (invalid in public versions).
- name: Set version
run: echo "VERSION=3.0.0b$(git rev-list 199b6c3..HEAD --count)" >> $GITHUB_ENV
run: echo "VERSION=3.0.0b$(date -u +%Y%m%d%H%M)" >> $GITHUB_ENV
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ on:
pull_request:
branches:
- major
- beta
push:
branches:
- major
- beta

jobs:
tests:
Expand Down
Loading