Releases: sylvaticus/OdsIO.jl
v0.6.3
v0.6.2
OdsIO v0.6.2
- Added support for streams, e.g.
data = @pipe HTTP.get(urlData).body |> ods_read(_)
- Added separated environment for tests
- Updated dependencies
v0.6.1
OdsIO v0.6.1
- Updated dependencies
Merged pull requests:
Updated to the new Project.toml format
v0.6.0 Merge pull request #9 from sylvaticus/compathelper/new_version/2020-0…
Updated to PyCall 1.9/2.x API
Updated to the new PyCall 1.9/2.x API.
For some things the index base has changed from 1 to 0, that makes the code looks a bit ugly, as first the logic is adapted to switch the 0-based inxed used in Python to the 1-based in Julia and then it is reverted back for the changes with the new api.. if someone has the time and the wish to clean it up.. :-)
Updated to Julia 1.0
Updated release for Julia 1.0
Updated to use the new DataFrames "missing"
OdsIO should now play well with the new DataFrames "missing" type, in both importing and exporting of data.
Dropped support for Julia 0.5
Improved importing of data as DataFrame
There was several issues in importing the data as DataFrame, this release solves them.
Updated ods_write() to work with Julia 0.6
In ods_write(), updated names(df)' to use reshape() instead, as the former no longer works in Julia 0.6 (the problem was in the export of dataframes only)
Manage auto-installation of python dependencies
Added deps/build.jl script to install required python dependencies using pip (if these are not already available).