We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d9058da + 93ccadf commit dc7b2e6Copy full SHA for dc7b2e6
default_python/setup.py
@@ -15,7 +15,9 @@
15
16
setup(
17
name="default_python",
18
- version=datetime.datetime.utcnow().strftime("%Y%m%d.%H%M%S"),
+ # We use timestamp as Local version identifier (https://peps.python.org/pep-0440/#local-version-identifiers.)
19
+ # to ensure that changes to wheel package are picked up when used on all-purpose clusters
20
+ version=default_python.__version__ + "+" + datetime.datetime.utcnow().strftime("%Y%m%d.%H%M%S"),
21
url="https://databricks.com",
22
author="[email protected]",
23
description="wheel file based on default_python/src",
default_python/src/default_python/__init__.py
@@ -1 +1 @@
1
-
+__version__ = "0.0.1"
0 commit comments