8000 Removed setuptools as a dependency by swryan · Pull Request #115 · OpenMDAO/testflo · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Removed setuptools as a dependency #115

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"setuptools",
"coverage>=6.0",
]

Expand Down
6 changes: 3 additions & 3 deletions testflo/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import os
import sys
import shutil
import time
import warnings
import traceback
Expand All @@ -23,11 +24,10 @@
from testflo.devnull import DevNull


from distutils import spawn
mpirun_exe = None
if spawn.find_executable("mpirun") is not None:
if shutil.which("mpirun") is not None:
mpirun_exe = "mpirun"
elif spawn.find_executable("mpiexec") is not None:
elif shutil.which("mpiexec") is not None:
mpirun_exe = "mpiexec"


Expand Down
1 change: 0 additions & 1 deletion testflo/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

from argparse import ArgumentParser, _AppendAction

from testflo.cover import start_coverage, stop_coverage

_store = {}

Expand Down
Loading
0