Skip to content

Commit

Permalink
[confcom] taking out print statement (#6994)
Browse files Browse the repository at this point in the history
* taking out print statement

* updating docs for new version
  • Loading branch information
SethHollandsworth authored Nov 15, 2023
1 parent 311fc9a commit a00ea10
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 4 additions & 0 deletions src/confcom/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
Release History
===============
0.3.1
++++++
* removing unneeded print statement

0.3.0
++++++
* adding katapolicygen as a subcommand
Expand Down
2 changes: 1 addition & 1 deletion src/confcom/azext_confcom/data/internal_config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.3.0",
"version": "0.3.1",
"hcsshim_config": {
"maxVersion": "1.0.0",
"minVersion": "0.0.1"
Expand Down
2 changes: 0 additions & 2 deletions src/confcom/azext_confcom/kata_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ class KataPolicyGenProxy: # pylint: disable=too-few-public-methods
# static variable to cache layer hashes between container groups
layer_cache = {}

# TODO: update this to only take stable releases once the release cycle is more consistent
@staticmethod
def download_binaries():
dir_path = os.path.dirname(os.path.realpath(__file__))
Expand Down Expand Up @@ -133,7 +132,6 @@ def kata_genpolicy(
# only take the last part of the path for the settings file
settings_file_name = os.path.basename(settings_file_name)
arg_list.append(settings_file_name)
print("arg_list: ", arg_list)

item = subprocess.run(
arg_list,
Expand Down
2 changes: 1 addition & 1 deletion src/confcom/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

logger.warn("Wheel is not available, disabling bdist_wheel hook")

VERSION = "0.3.0"
VERSION = "0.3.1"

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down

0 comments on commit a00ea10

Please sign in to comment.