Eikon upcoming upgrade notifications

Is it possible to get a notification about upcoming Eikon upgrade?

Is it possible to get a notification about Eikon Python API upgrade with release notes?

The recent upgrade of Eikon Python API module upgraded the dependencies to the last versions which broke some functionality on our side. And downgrade to 1.1.2 didn't help because it produced a lot of warnings/errors related to deprecated methods in the dependencies (I believe it was pandas). To avoid this problem in future we would like to get notifications about the upgrades and release notes.


Thanks,

Igor

Best Answer

Answers

  • Hi @igorg

    You can visit this URL to see the Eikon Data API release notes.

    To see all dependencies version

    You can use pip download command

    pip download eikon

    And see its version

    image


    You may use this code to temporary turn off the FutureWarning:

    import warnings
    warnings.simplefilter(action='ignore', category=FutureWarning)


    Or you can update the eikon package to 1.1.4 (released on 18th Aug 2020)

    The release notes are missing, I will contact the product team to update it.

    pip install eikon --upgrade


    Or you can use the refinitiv.dataplatform.eikon (Eikon subpackage) which just release on 19th Aug 2020

    pip install refinitiv.dataplatform
    import refinitiv.dataplatform.eikon as ek
    ek.set_app_key('xxxxxx')
  • igorg
    igorg Advocate

    This is not what I'm asking for.

    You did a lot of changes silently and pushed the update. We tested 1.1.2 on our server, next day we upgraded our prod server and it crashed, because you released 1.1.4 and we never tested it.

    We would like to have some notifications about upcoming upgrades. Is it possible to get?