From 790afef6238f9450744b9347b1264c1296615a82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20G=C3=BCnther?= Date: Thu, 2 Feb 2023 06:19:12 +0100 Subject: [PATCH] Revert installing the package during CI This reverts commit cb161b5c2a67a6711d3c717063c4b9b245dd4ac8. Installing the package during CI fails because of a broken dependency. So until issue #589 is fixed, that step can't be part of the CI workflow. --- .github/workflows/ci.yaml | 4 ---- noxfile.py | 9 --------- 2 files changed, 13 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4f2eb32f..83781f12 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -52,7 +52,3 @@ jobs: run: "python -m nox -s build" env: PLATFORM: ${{ matrix.os.image }} - - name: "Install the package" - run: "python -m nox -s install" - env: - PLATFORM: ${{ matrix.os.image }} diff --git a/noxfile.py b/noxfile.py index 7c12709a..98f0c9eb 100644 --- a/noxfile.py +++ b/noxfile.py @@ -1,4 +1,3 @@ -from pathlib import Path from pprint import pformat import nox @@ -59,11 +58,3 @@ def build(session): session.install("twine") session.run("python", "setup.py", "bdist", "bdist_wheel") session.run("twine", "check", "dist/eTraGo*") - - -@nox.session(python=["3", "3.8", "3.9", "3.10", "3.11"]) -def install(session): - """Install the package.""" - setdefaults(session) - session.run("python", "-mpip", "install", "--upgrade", "pip") - session.run("python", "-mpip", "install", *Path("dist").glob("*.whl"))