Skip to content

Commit

Permalink
correcting spelling mistake and bumping to version 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
htjb committed Apr 7, 2021
1 parent c917762 commit 3ffdb06
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Introduction

:globalemu: Robust Global 21-cm Signal Emulation
:Author: Harry Thomas Jones Bevins
:Version: 1.1.0
:Version: 1.1.1
:Homepage: https://github.com/htjb/globalemu
:Documentation: https://globalemu.readthedocs.io/

Expand Down
2 changes: 1 addition & 1 deletion globalemu/eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def __init__(self, **kwargs):
for key, values in kwargs.items():
if key not in set(
['xHI', 'base_dir', 'model', 'logs', 'gc', 'z']):
raise KeyError("Unexpected keyward argument in evaluate()")
raise KeyError("Unexpected keyword argument in evaluate()")

self.xHI = kwargs.pop('xHI', False)

Expand Down
2 changes: 1 addition & 1 deletion globalemu/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def __init__(self, **kwargs):
'output_shape', 'layer_sizes', 'base_dir',
'early_stop', 'early_stop_lim', 'xHI', 'resume',
'random_seed']):
raise KeyError("Unexpected keyward argument in nn()")
raise KeyError("Unexpected keyword argument in nn()")

self.resume = kwargs.pop('resume', False)
self.base_dir = kwargs.pop('base_dir', 'model_dir/')
Expand Down
2 changes: 1 addition & 1 deletion globalemu/preprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def __init__(self, num, z, **kwargs):
for key, values in kwargs.items():
if key not in set(
['base_dir', 'data_location', 'xHI', 'logs']):
raise KeyError("Unexpected keyward argument in process()")
raise KeyError("Unexpected keyword argument in process()")

self.num = num
if type(self.num) is not int:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def readme(short=False):

setup(
name='globalemu',
version='1.1.0',
version='1.1.1',
description='globalemu: Robust and Fast Global 21-cm Signal Emulation',
long_description=readme(),
author='Harry T. J. Bevins',
Expand Down

0 comments on commit 3ffdb06

Please sign in to comment.