Skip to content

Commit

Permalink
Bump version to 1.1.5e and update history
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Laughner (329I) committed Jun 5, 2023
1 parent 6863e60 commit 8b8b4e5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Ginput Version History

## v1.1.5e

During testing with GEOS IT files, we found that cases in which 3 EqL interpolators needed passed
between threads crashed due to a limit on the maximum size of data which can be passed between
threads in Python 3.6. Because upgrading to Python 3.10 will fix that issue but definitely introduce
numerical differences, this version implements a workaround in which the EqL interpolators are
saved to disk as pickle files and read in from the threads, bypassing the inter-thread object
size limit.

## v1.1.5d

**`mlo_smo_prep` version 1.1.0**
Expand Down
2 changes: 1 addition & 1 deletion ginput/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# be sure to update in setup.py as well
# and man/conf.py
# please follow semantic versioning: https://semver.org/
__version__ = '1.1.5d'
__version__ = '1.1.5e'
2 changes: 1 addition & 1 deletion man/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Joshua Laughner, Sebastien Roche, and Matthaeus Kiel'

# The full version, including alpha/beta/rc tags
release = '1.1.5d'
release = '1.1.5e'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
desciption='Python code that creates the .mod and .vmr files used in GGG',
author='Joshua Laughner, Sebastien Roche, Matthaeus Kiel',
author_email='jlaugh@caltech.edu',
version='1.1.5d', # make sure stays in sync with the version in ginput/__init__.py
version='1.1.5e', # make sure stays in sync with the version in ginput/__init__.py
url='',
install_requires=[
'astropy>=3.1.2',
Expand Down

0 comments on commit 8b8b4e5

Please sign in to comment.