From d72662df278d3c3be22ce433e45347ddfeda02ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Perceval=20Wajsb=C3=BCrt?= Date: Thu, 7 Dec 2023 21:27:11 +0100 Subject: [PATCH] fix: use new pip, bypass pypandoc w/ wheel & loosen constraints --- .github/workflows/testing.yml | 2 +- pyproject.toml | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 55430594..859e6887 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -79,7 +79,7 @@ jobs: cache: 'pip' - name: Install dependencies run: | - pip install -U "pip<23" + pip install -U pip wheel pip install --progress-bar off ".[${{ matrix.spark }}, dev, doc]" - name: Run pytest run: | diff --git a/pyproject.toml b/pyproject.toml index b643f4af..30c30b99 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,15 +30,14 @@ classifiers = [ "License :: OSI Approved :: BSD License", "Operating System :: Unix", ] -requires-python = ">=3.7.1,<3.8" +requires-python = ">=3.7.1" dependencies = [ "pgpasslib>=1.1.0, <2.0.0", - "psycopg2-binary>=2.9.0, <3.0.0", + "psycopg2-binary>=2.9.0", "pandas>=1.3.0, <2.0.0", "numpy>=1.0.0", - "altair>=5.0.0, <6.0.0", + "altair>=5.0.0", "loguru==0.7.0", - "pypandoc==1.7.5", "pyspark", "pyarrow>=0.10.0", "pretty-html-table>=0.9.15, <0.10.0",