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: 2 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ jobs:
uses: actions/checkout@v6
with:
ref: ${{ github.event_name == 'workflow_dispatch' && format('refs/tags/{0}', inputs.release_tag) || github.ref }}
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v6
Expand Down Expand Up @@ -129,6 +130,7 @@ jobs:
with:
# For a manual run, we want to check out the commit at the provided tag
ref: ${{ github.event_name == 'workflow_dispatch' && format('refs/tags/{0}', inputs.release_tag) || github.ref }}
fetch-depth: 0

# Use a single, modern Python for the canonical release build
- name: Set up Python (release build)
Expand Down
1 change: 1 addition & 0 deletions changelog/v2_0_0.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,5 +196,6 @@ It also improves data safety, diagnostics, and general usability.
* Upgrade & fix GenTL multi-camera mode by @C-Achard in https://github.com/DeepLabCut/DeepLabCut-live-GUI/pull/76
* Feature: triggered cameras, master and follower scheme by @C-Achard in https://github.com/DeepLabCut/DeepLabCut-live-GUI/pull/96
* Feature: encoding, UI and performance improvements by @C-Achard in https://github.com/DeepLabCut/DeepLabCut-live-GUI/pull/114
* 2.0 changelogs by @C-Achard in https://github.com/DeepLabCut/DeepLabCut-live-GUI/pull/116

**Full Changelog**: https://github.com/DeepLabCut/DeepLabCut-live-GUI/compare/v2.0.0rc1...v2.0.0
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=68" ]
requires = [ "setuptools>=68", "setuptools-scm[simple]>=9" ]

[project]
name = "deeplabcut-live-gui"
version = "2.0.0rc1"
description = "PySide6-based GUI to run real time pose estimation experiments with DeepLabCut"
readme = "README.md"
keywords = [ "deep learning", "deeplabcut", "gui", "pose estimation", "real-time" ]
Expand All @@ -22,6 +21,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dynamic = [ "version" ]
dependencies = [
"cv2-enumerate-cameras",
"deeplabcut-live>=1.1",
Expand Down
Loading