The Python docs recommend using the builtin mod operator (%) for
integers.
https://docs.python.org/3/library/math.html#math.fmod
> For this reason, function fmod() is generally preferred when working
> with floats, while Python’s x % y is preferred when working with
> integers.
The function's docstring was: "Return integer part of given number."
Python has a builtin function for this: int(). From the docs:
https://docs.python.org/3/library/functions.html#int
> If x defines __int__(), int(x) returns x.__int__(). If x defines
> __trunc__(), it returns x.__trunc__(). For floating point numbers,
> this truncates towards zero.
Wheel support.
Test more Python versions on travis.
Add more Python versions in classifiers in setup.py.
Change version number in jdcal.py.
Add test to compare gcal2jd with astropy._erfa.cal2jd.
1) Use setuptools instead of distutils.
I will continue non-wheel on pypi since I am not familiar with
wheels, and can't spend time on it if this breaks someone's
setup.
2) Made entry in changelog.