diff --git a/README.md b/README.md index 2e17f960..ebb78048 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ easy and intuitive. It is heavily inspired by [Pandas](https://pandas.pydata.org To use Danfo.js via script tags, copy and paste the CDN below to the body of your HTML file ```html - + ``` See all available versions [here](https://www.jsdelivr.com/package/npm/danfojs) @@ -68,7 +68,7 @@ See all available versions [here](https://www.jsdelivr.com/package/npm/danfojs) - + Document diff --git a/danfojs-browser/README.md b/danfojs-browser/README.md index c9fb9244..40a32fd1 100644 --- a/danfojs-browser/README.md +++ b/danfojs-browser/README.md @@ -51,7 +51,7 @@ easy and intuitive. It is heavily inspired by [Pandas](https://pandas.pydata.org To use Danfo.js via script tags, copy and paste the CDN below to the body of your HTML file ```html - + ``` ### Example Usage in the Browser @@ -66,7 +66,7 @@ To use Danfo.js via script tags, copy and paste the CDN below to the body of you - + Document diff --git a/danfojs-browser/package.json b/danfojs-browser/package.json index b662f28c..300aa5a6 100644 --- a/danfojs-browser/package.json +++ b/danfojs-browser/package.json @@ -1,6 +1,6 @@ { "name": "danfojs", - "version": "0.3.2", + "version": "0.3.3", "description": "JavaScript library providing high performance, intuitive, and easy to use data structures for manipulating and processing structured data.", "main": "dist/index.js", "types": "types/index.d.ts", diff --git a/danfojs-browser/src/index.js b/danfojs-browser/src/index.js index a8f11530..299a5687 100644 --- a/danfojs-browser/src/index.js +++ b/danfojs-browser/src/index.js @@ -46,4 +46,4 @@ export { get_dummies }; -export const _version = "0.3.2"; +export const _version = "0.3.3"; diff --git a/danfojs-browser/tests/io/reader.js b/danfojs-browser/tests/io/reader.js index 554f6100..9a0c484c 100644 --- a/danfojs-browser/tests/io/reader.js +++ b/danfojs-browser/tests/io/reader.js @@ -1,7 +1,7 @@ /* eslint-disable no-undef */ describe("read_csv", async function () { - this.timeout(10000); // all tests in this suite get 10 seconds before timeout + this.timeout(100000); // all tests in this suite get 10 seconds before timeout it("reads a csv file from source over the internet", async function () { const csvUrl = "https://storage.googleapis.com/tfjs-examples/multivariate-linear-regression/data/boston-housing-train.csv"; @@ -36,7 +36,7 @@ describe("read_json", async function () { }); describe("read_excel", async function () { - this.timeout(10000); // all tests in this suite get 10 seconds before timeout + this.timeout(100000); // all tests in this suite get 10 seconds before timeout it("reads an excel file from source over the internet", async function () { const remote_url = "https://raw.githubusercontent.com/opensource9ja/danfojs/dev/danfojs-node/tests/samples/SampleData.xlsx"; diff --git a/danfojs-node/README.md b/danfojs-node/README.md index 598ff201..5579cb8e 100644 --- a/danfojs-node/README.md +++ b/danfojs-node/README.md @@ -51,7 +51,7 @@ easy and intuitive. It is heavily inspired by [Pandas](https://pandas.pydata.org To use Danfo.js via script tags, copy and paste the CDN below to the body of your HTML file ```html - + ``` ### Example Usage in the Browser @@ -66,7 +66,7 @@ To use Danfo.js via script tags, copy and paste the CDN below to the body of you - + Document diff --git a/danfojs-node/package.json b/danfojs-node/package.json index ce6646fd..94bcf413 100644 --- a/danfojs-node/package.json +++ b/danfojs-node/package.json @@ -1,6 +1,6 @@ { "name": "danfojs-node", - "version": "0.3.2", + "version": "0.3.3", "description": "JavaScript library providing high performance, intuitive, and easy to use data structures for manipulating and processing structured data.", "main": "dist/index.js", "types": "types/index.d.ts", diff --git a/danfojs-node/src/index.js b/danfojs-node/src/index.js index 282b18b9..b0e9d119 100644 --- a/danfojs-node/src/index.js +++ b/danfojs-node/src/index.js @@ -46,4 +46,4 @@ export { get_dummies }; -export const _version = "0.3.2"; +export const _version = "0.3.3";