Skip to content
Snippets Groups Projects
  1. Apr 16, 2018
  2. Apr 12, 2018
  3. Apr 10, 2018
  4. Mar 15, 2018
  5. Feb 07, 2018
  6. Feb 06, 2018
  7. Jun 29, 2017
  8. May 15, 2017
  9. Apr 28, 2017
  10. Apr 25, 2017
  11. Apr 13, 2017
  12. Dec 20, 2016
  13. Dec 15, 2016
  14. Oct 12, 2016
  15. Oct 06, 2016
  16. Sep 30, 2016
  17. Aug 02, 2016
    • Florent Jaillet's avatar
      Small doc improvements · 1991f4dd
      Florent Jaillet authored
      1991f4dd
    • Florent Jaillet's avatar
      Modify fractions.gcd() import in lcm due to deprecation in Python 3.5 · ef52fca5
      Florent Jaillet authored
      According to the documentation of Python 3.5, the function fractions.gcd()
      is deprecated and should be replaced by math.gcd().
      
      So we modify the import of gcd() in lcm.py to import it from the math
      module when possible, keeping the import from the fractions module if not
      possible in order to keep the compatibility with older versions of Python.
      ef52fca5
    • Florent Jaillet's avatar
      Fix VisibleDeprecationWarnings reported in issue #2 · 646c23dc
      Florent Jaillet authored
      As reported in Issue #2, many VisibleDeprecationWarnings were raised
      when running the tests of ltfatpy with a recent version of numpy.
      
      This is now solved by insuring that values used for indexes in numpy
      arrays are integers, either by using integer division (//) where needed,
      or by explicitely converting to integer type (changing np.func(X/2) to
      int(np.func(X/2))), or by using int as the array dtype.
      646c23dc
  18. Jan 14, 2016
Loading