We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 896e6e8 commit 262c924Copy full SHA for 262c924
Makefile
@@ -5,6 +5,9 @@ SPARK_VERSION ?= 3.4.0
5
6
DIST_DIR = ./dist
7
8
+# poetry settings
9
+export SETUPTOOLS_USE_DISTUTILS=stdlib
10
+
11
help:
12
@echo "init - Setup the repository"
13
@echo "clean - clean all compiled python files, build artifacts and virtual envs. Run \`make init\` anew afterwards."
@@ -55,6 +58,7 @@ publish-scala:
55
58
init-python:
56
59
python -m venv ./.venv
57
60
./.venv/bin/python -m pip install --upgrade pip
61
+ poetry self add setuptools
62
poetry self add "poetry-dynamic-versioning[plugin]"
63
poetry install
64
poetry add pyspark@${SPARK_VERSION}
0 commit comments