Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
AntreasAntoniou committed Feb 16, 2024
1 parent f7743fc commit a4e722e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions kubejobs/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,9 @@ def __init__(

self.user_name = user_name or os.environ.get("USER", "unknown")
self.user_email = user_email # This is now a required field.
self.kubernetes_queue_name = kubernetes_queue_name
self.kueue_queue_name = kueue_queue_name

self.labels = {"eidf/user": self.user_name, "kueue.x-k8s.io/queue-name": self.kubernetes_queue_name}
self.labels = {"eidf/user": self.user_name, "kueue.x-k8s.io/queue-name": self.kueue_queue_name}

if labels is not None:
self.labels.update(labels)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setup(
name="kubejobs",
version="0.4.3",
version="0.4.4",
description="A Python library for creating and running Kubernetes Jobs",
long_description=long_description,
long_description_content_type="text/markdown", # This is important!
Expand Down

0 comments on commit a4e722e

Please sign in to comment.