Skip to content

Commit

Permalink
Adjust python version of plugins for current specs (#1543)
Browse files Browse the repository at this point in the history
* Adjust python version of plugins for current specs

* docs: add info to CHANGES

Co-authored-by: Sijis Aviles <[email protected]>
  • Loading branch information
attakei and sijis authored Dec 3, 2021
1 parent 06721e7 commit be469b1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ fixes:
- core: various minor logging improvements (#1536)
- chore: various minor formatting improvements (#1541)
- docs: update spark plugin reference (#1546)
- fix: python 2 version references in docs and init template (#1543)

v6.1.8 (2021-06-21)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/user_guide/flow_development/basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ They are defined by a ``.flow`` file, similar to the plugin ones:
Description = my documentation.
[Python]
Version = 2+
Version = 3
Now in the ``myflows.py`` file you will have pretty familiar structure with a ``BotFlow`` as type and @botflow
Expand Down
2 changes: 1 addition & 1 deletion docs/user_guide/plugin_development/basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ Lets go ahead and create ours. Place the following in a file called
Module = helloworld
[Python]
Version = 2+
Version = 3
[Documentation]
Description = Example "Hello, world!" plugin
Expand Down
2 changes: 1 addition & 1 deletion errbot/templates/initdir/example.plug
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ Module = example
Description = This is a simple plugin example to get you started.

[Python]
Version = 2+
Version = 3

0 comments on commit be469b1

Please sign in to comment.