Skip to content

Commit

Permalink
Merge pull request #28 from arghdos/master
Browse files Browse the repository at this point in the history
typo
  • Loading branch information
arghdos authored Feb 21, 2018
2 parents 3c8d016 + 3a5a1c5 commit d7e138f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ 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

### Fixed
- 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
Expand Down
2 changes: 1 addition & 1 deletion pyjac/_version.py
Original file line number Diff line number Diff line change
@@ -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]
2 changes: 1 addition & 1 deletion pyjac/core/mech_interpret.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pyjac/performance_tester/performance_tester.py
Original file line number Diff line number Diff line change
Expand Up @@ -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],
Expand Down

0 comments on commit d7e138f

Please sign in to comment.