rocketlaunchr / dataframe-go

DataFrames for Go: For statistics, machine-learning, and data manipulation/exploration
Other
1.19k stars 95 forks source link

Support for Go modules? #18

Closed typeless closed 4 years ago

typeless commented 4 years ago

Go modules makes it easier to work on multiple forked packages at the same time. I suppose a simple go mod init github.com/rocketlaunchr/dataframe-go would be sufficient to have it.

If you accept the proposal, I can submit a PR later.

pjebs commented 4 years ago

In a week or two, I'll be adding some new features and changing the API in a few places. Once I complete that I will tag it v1 and add go modules.

pjebs commented 4 years ago

I'm hesitant to add go modules yet because although it's trivial to create a "v1", there are some complexities involved when creating a breaking change and going to v2. I want to be happy with the API before I create "v1" to reduce the hassles later on.

pjebs commented 4 years ago

done.