From e3bfd03e58f463c435d32be339f792ddb32ca40c Mon Sep 17 00:00:00 2001 From: Nick Date: Sun, 18 Feb 2018 11:10:59 -0500 Subject: [PATCH 1/3] typo --- pyjac/core/mech_interpret.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyjac/core/mech_interpret.py b/pyjac/core/mech_interpret.py index 33ce830..2f18fda 100644 --- a/pyjac/core/mech_interpret.py +++ b/pyjac/core/mech_interpret.py @@ -978,7 +978,7 @@ def handle_effiencies(reac, ct_rxn): if rxn.default_efficiency == 0.0 \ and len(ct_rxn.efficiencies.keys()) == 1\ and list(ct_rxn.efficiencies.values())[0] == 1\ - and reac.is_pdep: + and reac.pdep: reac.pdep_sp = list(rxn.efficiencies.keys())[0] else: for sp in gas.species_names: From 4bbd0ec39da152babca1e9bf84b2580c288406ff Mon Sep 17 00:00:00 2001 From: Nick Date: Sun, 18 Feb 2018 11:21:01 -0500 Subject: [PATCH 2/3] proper call to subprocess --- pyjac/performance_tester/performance_tester.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyjac/performance_tester/performance_tester.py b/pyjac/performance_tester/performance_tester.py index 9ca4764..145765e 100644 --- a/pyjac/performance_tester/performance_tester.py +++ b/pyjac/performance_tester/performance_tester.py @@ -286,7 +286,7 @@ def false_factory(): #check that nvcc installed cuda_params = {} try: - subprocess.check_call('nvcc --version') + subprocess.check_call(['nvcc', '--version']) #if we have NVCC, assume we can execute CUDA cuda_params = {'lang' : 'cuda', 'cache_opt' : [False], From 3a5a1c587d89f44c2e60870b958f6317466e1e93 Mon Sep 17 00:00:00 2001 From: Nick Date: Wed, 21 Feb 2018 17:11:04 -0500 Subject: [PATCH 3/3] bump version & update changelog --- CHANGELOG.md | 3 ++- pyjac/_version.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6caa177..794136d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [Unreleased] +## [1.0.6] - 2018-02-21 ### Added - DOI for 1.0.4 @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Syntax errors in readme.md - Conda install instructions in install.md - Corrected TRange columns in parser +- Minor documentation fixes ### Added - Add check to reactions to test that all species exist diff --git a/pyjac/_version.py b/pyjac/_version.py index 72cbc72..e0266f5 100644 --- a/pyjac/_version.py +++ b/pyjac/_version.py @@ -1,4 +1,4 @@ -__version_info__ = (1, 0, 5, 'c') +__version_info__ = (1, 0, 6) __version__ = '.'.join(map(str, __version_info__[:3])) if len(__version_info__) == 4: __version__ += __version_info__[-1]