Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
900fe84
Combined two demo python notebooks into one
rm1771 Apr 3, 2026
0fe58af
A prototype for the hallmark checkout functionality with the cli feat…
Apr 3, 2026
f110933
implemented the cache functionality in hallmark. Added files in any w…
HaydenMarchinek Apr 9, 2026
a88e37c
Added demo cache notebook
HaydenMarchinek Apr 9, 2026
3c0f597
Implementing basic clone functionality for remote hallmark repo
nayera16 Apr 10, 2026
22e8c47
do not search for existing repo when cloning
nayera16 Apr 10, 2026
1bfbfae
Updated cache to be named as index
rm1771 Apr 14, 2026
9c65662
Fixed double initialization bug
HaydenMarchinek Apr 16, 2026
a2071a8
Restored proper repo.py version
HaydenMarchinek Apr 17, 2026
11cb4ee
Updated the index/ to be made in hallmark commit and removed the sha1…
rm1771 Apr 17, 2026
25a49d6
Updated the checkout() feature that covers all scenarios; Updated dem…
rm1771 Apr 17, 2026
e82545f
implementing download/fetch feature with clone feature (from copilot)
nayera16 Apr 17, 2026
c2ef0a4
Updated the checkout feature to take care of deletion; config.yml is …
rm1771 Apr 18, 2026
ca68276
implemented clone feature with downloading files from cyverse
nayera16 Apr 21, 2026
c744e0b
Add downloader support and update demo notebooks and tests
rm1771 Apr 21, 2026
f7c3883
updated linter workflow with demo
nayera16 Apr 22, 2026
29908ac
fixed 36 linter errors, mostly lines too long
nayera16 Apr 22, 2026
8309801
Updated dothm and repo to allow tests to pass
HaydenMarchinek Apr 22, 2026
7f446fc
Fixed config_template to allow tests to pass
HaydenMarchinek Apr 22, 2026
41b4d02
removed python3.9 functionality
HaydenMarchinek Apr 22, 2026
3ca0b66
Make compatible with Python 3.9
rndsrc Apr 22, 2026
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9","3.10","3.11","3.12","3.13","3.14"]
python-version: ["3.9", "3.10","3.11","3.12","3.13","3.14"]

steps:
- uses: actions/checkout@v4
Expand All @@ -27,11 +27,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ruff pytest
python -m pip install ruff pytest
python -m pip install -e .
- name: Lint with ruff
run: |
ruff check --select E,F --exclude ./demos
ruff check --select E,F --exclude ./demo
- name: Test with pytest
run: |
pytest
pytest
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
!*.*py
!*.*ml
!*file
!demo/demo_cli.ipynb
!demo/demo_python.ipynb

__pycache__/
*.egg-info/
Expand Down
Loading
Loading