From d186ef35d4f052cd4ae39994e62a3a6993cef592 Mon Sep 17 00:00:00 2001 From: import-bot <131609634+import-bot@users.noreply.github.com> Date: Wed, 27 Sep 2023 00:37:08 -0400 Subject: [PATCH] Release 1.0.4 (#101) * Release 1.0.4 * Update README.md CI badge --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: extremeheat --- HISTORY.md | 3 +++ README.md | 5 ++--- package.json | 2 +- setup.py | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index d1a0555..7d61b3c 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,6 @@ +## 1.0.4 +* [javascript: check NODE_BIN in os.environ dict instead of attr (#100)](https://github.com/extremeheat/JSPyBridge/commit/054332f69b51ee2b9dca6d8de188313f9070d208) (thanks @extremeheat) + ## 1.0.3 * [Add option to configure call timeout (REQ_TIMEOUT) from env var for Python calls from JavaScript (#90)](https://github.com/extremeheat/JSPyBridge/commit/95ad451f22ab5f20b8b63372377ea560a18c04b0) (thanks @jc-roman) diff --git a/README.md b/README.md index 8e62bfe..a3cab1c 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,10 @@ # JSPyBridge [![NPM version](https://img.shields.io/npm/v/pythonia.svg)](http://npmjs.com/package/pythonia) [![PyPI](https://img.shields.io/pypi/v/javascript)](https://pypi.org/project/javascript/) -[![Build Status](https://github.com/extremeheat/JSPyBridge/workflows/Node.js%20CI/badge.svg)](https://github.com/extremeheat/JSPyBridge/actions/workflows/) +[![Build Status](https://github.com/extremeheat/JSPyBridge/actions/workflows/node.yml/badge.svg)](https://github.com/extremeheat/JSPyBridge/actions/workflows/) [![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/extremeheat/jspybridge) - Interoperate Node.js and Python. You can run Python from Node.js, *or* run Node.js from Python. **Work in progress.** Requires Node.js 14 and Python 3.8 or newer. @@ -322,4 +321,4 @@ for await (const file of files) { * You can set the Node.js/Python binary paths by setting the `NODE_BIN` or `PYTHON_BIN` enviornment variables before importing the library. Otherwise, the `node` and `python3` or `python` binaries will be called relative to your PATH enviornment variable. -* Function calls will timeout after 100000 ms and throw a `BridgeException` error. That default value can be overridden by defining the new value of `REQ_TIMEOUT` in an environment variable. \ No newline at end of file +* Function calls will timeout after 100000 ms and throw a `BridgeException` error. That default value can be overridden by defining the new value of `REQ_TIMEOUT` in an environment variable. diff --git a/package.json b/package.json index 70b23d0..69f1822 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "pythonia", "author": "extremeheat", "description": "Bridge to call and interop Python APIs from Node.js", - "version": "1.0.3", + "version": "1.0.4", "main": "./src/pythonia/index.js", "types": "./src/pythonia/index.d.ts", "repository": "https://github.com/extremeheat/JSPyBridge", diff --git a/setup.py b/setup.py index 0bd906c..56dde5d 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ # For a discussion on single-sourcing the version across setup.py and the # project code, see # https://packaging.python.org/en/latest/single_source_version.html - version='1!1.0.3', # Required + version='1!1.0.4', # Required # This is a one-line description or tagline of what your project does. This # corresponds to the "Summary" metadata field: