Skip to content

Commit

Permalink
Merge pull request #50 from 6809/dev
Browse files Browse the repository at this point in the history
Bugfix "publish" command
  • Loading branch information
jedie authored Sep 24, 2024
2 parents 8f4121a + ddeaeeb commit 8bbcbcb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
8 changes: 2 additions & 6 deletions MC6809/cli_dev/packaging.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import sys
from pathlib import Path

import cli_base
import click
from cli_base.cli_tools.dev_tools import run_unittest_cli
from cli_base.cli_tools.subprocess_utils import verbose_check_call
from cli_base.cli_tools.verbosity import OPTION_KWARGS_VERBOSE
from cli_base.run_pip_audit import run_pip_audit
from manageprojects.utilities.publish import publish_package

import MC6809
from MC6809.cli_dev import PACKAGE_ROOT, cli


Expand Down Expand Up @@ -78,8 +78,4 @@ def publish():
"""
run_unittest_cli(verbose=False, exit_after_run=False) # Don't publish a broken state

publish_package(
module=cli_base,
package_path=PACKAGE_ROOT,
distribution_name='cli-base-utilities',
)
publish_package(module=MC6809, package_path=PACKAGE_ROOT)
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ To make a new release, do this:
[comment]: <> (✂✂✂ auto generated history start ✂✂✂)

* [v0.7.3](https://github.com/6809/MC6809/compare/v0.7.2...v0.7.3)
* 2024-09-24 - Bugfix "publish" command
* 2024-09-24 - Add "example" command to app CLI
* 2024-09-24 - + pre-commit hook
* 2024-09-24 - Split CLI by manageprojects updates
Expand Down

0 comments on commit 8bbcbcb

Please sign in to comment.