@@ -7,22 +7,22 @@ This repository provides a template for creating and running new [MsgFlo](https:
77
88* Support for JavaScript components
99* Support for CoffeeScript components
10- * Support for Python components
10+ * Support for Python 3 components
1111* docker-compose runnable environment
1212
1313## Getting started
1414
1515* Fork this repository and name it to whatever suits your purpose
1616* Update the project name and repository details accordingly in ` package.json `
17- * If you need additional libraries, add them to ` package.json ` (for Node.js) or ` requirements.txt ` (for Python)
17+ * If you need additional libraries, add them to ` package.json ` (for Node.js) or ` requirements.txt ` (for Python 3 )
1818
1919You can use this template for development both with a direct installation or with Docker.
2020
2121### Running locally
2222
2323* Install and start a [ Mosquitto] ( https://mosquitto.org/ ) message broker
2424* Install the Node.js dependencies of this project with ` npm install `
25- * Install the Python dependencies of this project with ` pip install -r requirements.txt`
25+ * Install the Python 3 dependencies of this project with ` pip3 install -r requirements.txt`
2626* Start the MsgFlo broker with ` MSGFLO_BROKER=mqtt://localhost npm start `
2727
2828### Running with Docker
@@ -49,3 +49,8 @@ Use Flowhub's [GitHub synchronization](https://docs.flowhub.io/github-integratio
4949* Enable your local fork in [ Travis CI] ( https://travis-ci.org/ )
5050* Tests are written in [ fbp-spec format] ( https://github.com/flowbased/fbp-spec ) and located in ` spec/ ` folder
5151* You can run tests locally with ` npm test ` (note: you'll have to do ` npm install ` for this even when running with Docker)
52+
53+ ## Changes
54+
55+ * 1.0.0 (git master)
56+ - Switched from Python 2 to Python 3
0 commit comments