Skip to content

Commit

Permalink
ci: support releasing to pypi on tags2
Browse files Browse the repository at this point in the history
  • Loading branch information
EspenAlbert committed Aug 22, 2023
1 parent a7aed0f commit f70059b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion _pants/py_package.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = env("VERSION", "0.0.28a2")
VERSION = "0.0.28a2"
def py_package(
*,
description: str,
Expand All @@ -7,6 +7,7 @@ def py_package(
distribution_name: str = "",
extras_require: dict = None,
):
version = env("VERSION", VERSION)
parent = build_file_dir()
folder_name = parent.name
extra_dependencies = extra_dependencies or []
Expand Down

0 comments on commit f70059b

Please sign in to comment.