From 1a08e9822d05473b0b2f780d04ee909dfc390240 Mon Sep 17 00:00:00 2001 From: Stefan Doerr Date: Mon, 16 Dec 2024 11:49:54 +0200 Subject: [PATCH] add requests to pypi deps. reenable cdpkit --- .github/workflows/test_and_publish.yml | 10 +++++----- pyproject.toml | 9 ++++++++- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test_and_publish.yml b/.github/workflows/test_and_publish.yml index 093411f..cf5d21b 100644 --- a/.github/workflows/test_and_publish.yml +++ b/.github/workflows/test_and_publish.yml @@ -41,11 +41,11 @@ jobs: # scikit-learn, joblib, biopython are only used for rarely-used functions in smallmol conda install -y -q scikit-learn joblib biopython -c conda-forge - # - name: Install cdpkit - # if: ${{ matrix.os == 'ubuntu-latest' }} - # run: | - # # for testing CDPKit SmallMol - # pip install cdpkit + - name: Install cdpkit + # if: ${{ matrix.os == 'ubuntu-latest' }} + run: | + # for testing CDPKit SmallMol + pip install CDPKit==1.2.0.dev3 - name: Install moleculekit run: | diff --git a/pyproject.toml b/pyproject.toml index 714d3d1..3cb4109 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,14 @@ classifiers = [ "Programming Language :: Python :: 3", "Operating System :: POSIX :: Linux", ] -dependencies = ["numpy>=1.23.5", "pandas>=1.1.2", "networkx", "tqdm", "msgpack"] +dependencies = [ + "numpy>=1.23.5", + "pandas>=1.1.2", + "networkx", + "tqdm", + "msgpack", + "requests", +] [project.urls] "Homepage" = "https://github.com/Acellera/moleculekit"