Skip to content

Commit

Permalink
v1.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
fqqb committed Mar 18, 2024
1 parent b43227d commit 0378f16
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setuptools.setup(
name="yamcs-cli",
version="1.4.7",
version="1.4.8",
description="Yamcs Command-Line Tools",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down Expand Up @@ -36,8 +36,8 @@
"Operating System :: OS Independent",
],
platforms="Posix; MacOS X; Windows",
install_requires=["argcomplete", "python-dateutil", "yamcs-client>=1.9.1"],
extras_require={"kerberos": ["yamcs-client-kerberos>=1.2.1"]},
install_requires=["argcomplete", "python-dateutil", "yamcs-client>=1.9.4"],
extras_require={"kerberos": ["yamcs-client-kerberos>=1.2.2"]},
include_package_data=True,
zip_safe=False,
)
4 changes: 2 additions & 2 deletions src/yamcs/cli/packets.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def rebuild_histogram(self, args):
if args.until:
stop = utils.parse_timestamp(args.until)

stdout.write(f"Rebuilding packet histogram")
stdout.write("Rebuilding packet histogram")
stdout.flush()
archive.rebuild_histogram("tm", start=start, stop=stop)
stdout.write("done\n")
Expand All @@ -141,7 +141,7 @@ def rebuild_ccsds_index(self, args):
if args.until:
stop = utils.parse_timestamp(args.until)

stdout.write(f"Rebuilding CCSDS index... ")
stdout.write("Rebuilding CCSDS index... ")
stdout.flush()
archive.rebuild_ccsds_index(start, stop)
stdout.write("done\n")
Expand Down

0 comments on commit 0378f16

Please sign in to comment.