Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jedie committed Nov 3, 2023
1 parent 6140d38 commit 426159b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Checkout
run: |
echo $GITHUB_REF $GITHUB_SHA
git clone --depth 1 https://github.com/$GITHUB_REPOSITORY.git .
git clone https://github.com/$GITHUB_REPOSITORY.git .
git fetch origin $GITHUB_SHA:temporary-ci-branch
git checkout $GITHUB_SHA || (git fetch && git checkout $GITHUB_SHA)
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,8 @@ To make a new release, do this:
[comment]: <> (✂✂✂ auto generated history start ✂✂✂)

* [v0.9.1](https://github.com/jedie/DragonPy/compare/v0.9.0...v0.9.1)
* 2023-11-03 - Fix CI
* 2023-11-03 - Apply manageprojects updates
* 2023-11-03 - fix test_tokens_in_string()
* 2023-11-03 - Auto generate README history
* 2023-11-03 - Use https://github.com/jedie/cli-base-utilities
Expand Down
2 changes: 2 additions & 0 deletions dragonpy/cli/cli_app.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
"""
CLI for usage
"""
from __future__ import annotations

import inspect
import locale
import logging
Expand Down
4 changes: 2 additions & 2 deletions dragonpy/cli/dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

import rich_click as click
from bx_py_utils.path import assert_is_file
from manageprojects.utilities import code_style
from manageprojects.utilities.publish import publish_package
from cli_base.cli_tools.subprocess_utils import verbose_check_call
from cli_base.cli_tools.version_info import print_version
from manageprojects.utilities import code_style
from manageprojects.utilities.publish import publish_package
from rich import print # noqa; noqa
from rich_click import RichGroup

Expand Down

0 comments on commit 426159b

Please sign in to comment.