Skip to content

Commit

Permalink
Revert installing the package during CI
Browse files Browse the repository at this point in the history
This reverts commit cb161b5.
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.
  • Loading branch information
gnn committed Feb 2, 2023
1 parent bedfa3f commit 790afef
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
9 changes: 0 additions & 9 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from pathlib import Path
from pprint import pformat

import nox
Expand Down Expand Up @@ -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"))

0 comments on commit 790afef

Please sign in to comment.