Version 2.14

This commit is contained in:
Brandon Rhodes 2020-03-26 12:41:21 -04:00
parent 193eb4d49d
commit 0b72da7ae6
2 changed files with 8 additions and 1 deletions

View File

@ -351,6 +351,12 @@ https://github.com/brandon-rhodes/python-jplephem/
Changelog
---------
**2020 March 26 Version 2.14**
* Fall back to plain file I/O on platforms that support ``fileno()`` but
that dont support ``mmap()``, like the `Pyodide platform
<https://github.com/iodide-project/pyodide>`_.
**2020 February 22 Version 2.13**
* The exception raised when a segment is given a Julian date outside the

View File

@ -8,7 +8,7 @@ import jplephem
description, long_description = jplephem.__doc__.split('\n', 1)
setup(name = 'jplephem',
version = '2.13',
version = '2.14',
description = description,
long_description = long_description,
license = 'MIT',
@ -26,6 +26,7 @@ setup(name = 'jplephem',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Astronomy',
],
packages = ['jplephem'],