From e578d84063adf4853ed087500bd3d67078e53337 Mon Sep 17 00:00:00 2001 From: Michaela Mueller <51025211+mumichae@users.noreply.github.com> Date: Thu, 8 Sep 2022 14:39:18 +0200 Subject: [PATCH] Bump rp2y dependency (#334) * add python 3.9 to description * remove macos * pin igraph * add macos * skip pytest for macos * skip macos for step * remove brackets * add context brackets * remove igraph version pin --- .github/workflows/test.yml | 2 ++ setup.cfg | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a1cb3c9e..3a0ac574 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -57,9 +57,11 @@ jobs: pip install '.[test]' - name: Test with pytest + if: ${{ matrix.os != 'macos-latest'}} run: | python -m pytest --cov --cov-append --cov-report=term-missing --ignore=tests/integration/ -vv - name: Upload coverage + if: ${{ matrix.os != 'macos-latest' }} env: CODECOV_NAME: ${{ matrix.os }}-${{ matrix.python }} run: | diff --git a/setup.cfg b/setup.cfg index 1928b0a1..7d075282 100644 --- a/setup.cfg +++ b/setup.cfg @@ -34,6 +34,7 @@ classifiers = Programming Language :: Python :: 3 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 [bdist_wheel] build_number = 1 @@ -58,9 +59,10 @@ install_requires = scikit-learn scikit-misc louvain + leidenalg umap-learn pydot - python-igraph + igraph llvmlite deprecated zip_safe = False