Skip to content

Commit

Permalink
Merge pull request #196 from equinor/version-2.5.2
Browse files Browse the repository at this point in the history
update to version 2.5.2
  • Loading branch information
EvenSol authored Jun 13, 2023
2 parents e254e8c + f7930f6 commit 1bf8170
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Binary file not shown.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@

setup(
name="neqsim",
version="2.5.1",
version="2.5.2",
author="Even Solbraa",
author_email="[email protected]",
description="NeqSim is a tool for thermodynamic and process calculations",
long_description="NeqSim (Non-Equilibrium Simulator) is a library for estimation of fluid behaviour for oil and gas production. The basis for NeqSim is fundamental mathematical models related to phase behaviour and physical properties of oil and gas.",
long_description="NeqSim is a library for estimation of fluid behaviour for oil and gas production. The basis for NeqSim is fundamental mathematical models related to phase behaviour and physical properties of oil and gas.",
long_description_content_type="text/markdown",
url="https://github.com/Equinor/neqsimpython",
packages=find_packages(),
package_data={'neqsim': ['lib/*.jar','lib/libj8/*.jar']},
package_data={'neqsim': ['lib/*.jar']},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
Expand Down
6 changes: 3 additions & 3 deletions tests/test_NeqSim.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ def test_Viscosity():
gasViscosity = thermoSystem.getPhase(0).getViscosity("kg/msec")
assert abs(1.0760998263782569e-05 - gasViscosity) < 1e-10

def test_updateDatabase():
jNeqSim.util.database.NeqSimDataBase.updateTable("COMP",
"classpath:/data/COMP.csv")
#def test_updateDatabase():
# jNeqSim.util.database.NeqSimDataBase.updateTable("COMP",
# "classpath:/data/COMP.csv")

def test_hasComponentDatabase():
assert jNeqSim.util.database.NeqSimDataBase.hasComponent("methane") == True
Expand Down

0 comments on commit 1bf8170

Please sign in to comment.