Skip to content

Commit

Permalink
remove changes as part of seperate PR
Browse files Browse the repository at this point in the history
  • Loading branch information
sdrauz authored and sdrauz committed Dec 11, 2023
1 parent a15399c commit 1468b48
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pandapipes/test/pipeflow_internals/test_inservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,8 @@ def test_connectivity_hydraulic(create_test_net, use_numba):
assert np.all(np.isnan(net.res_pipe.loc[[1, 2, 3], :].values))
assert not np.any(np.isnan(net.res_junction.loc[[0, 1, 3, 4], :].values))
assert not np.any(np.isnan(net.res_pipe.loc[[0, 4],
["v_mean_m_per_s", "p_from_bar",
"p_to_bar"]].values))
["v_mean_m_per_s", "p_from_bar",
"p_to_bar"]].values))
assert not np.any(np.isnan(net.res_sink.loc[[0, 2], "mdot_kg_per_s"].values))
assert np.all(np.isnan(net.res_sink.loc[[1, 3, 4], "mdot_kg_per_s"].values))

Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# and Energy System Technology (IEE), Kassel, and University of Kassel. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.

from setuptools import find_namespace_packages
from setuptools import find_packages
from setuptools import setup
import re

Expand Down Expand Up @@ -49,8 +49,7 @@
"test": ["pytest", "pytest-xdist", "nbmake"],
"all": ["numpydoc", "sphinx", "sphinx_rtd_theme", "sphinxcontrib.bibtex",
"plotly", "igraph", "pytest", "pytest-xdist", "nbmake"]},
packages=find_namespace_packages(where="pandapipes"),
package_dir={"": "pandapipes"},
packages=find_packages(),
include_package_data=True,
classifiers=classifiers
)

0 comments on commit 1468b48

Please sign in to comment.