We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
linux/amd64
1 parent 2bda452 commit 8865edcCopy full SHA for 8865edc
Dockerfile
@@ -12,4 +12,4 @@ COPY . /app
12
13
# Install package
14
WORKDIR /app
15
-RUN pip install .
+RUN pip install --prefer-binary .
setup.py
@@ -6,6 +6,8 @@
6
here = os.path.abspath(os.path.dirname(__file__))
7
README = open(os.path.join(here, "README.rst")).read()
8
9
+no_linux_on_arm = "platform_system != 'Linux' or (platform_machine != 'armv7l' and platform_machine != 'aarch64')"
10
+
11
requires = [
# Core
"six",
@@ -14,8 +16,8 @@
16
"munch>=2.5.0,<3",
17
"tqdm>=4.60.0,<5",
18
# Filtering
- "pandas<1.6",
- "duckdb<0.8",
19
+ f"pandas<1.6; {no_linux_on_arm}",
20
+ f"duckdb<0.8; {no_linux_on_arm}",
21
# Grafana
22
"requests>=2.23.0,<3",
23
"grafana-client>=2.1.0,<4",
0 commit comments