From 678c665cd1016f09553d986e497e26d1c268675f Mon Sep 17 00:00:00 2001 From: ondrej Date: Tue, 3 Dec 2019 11:50:48 +0100 Subject: [PATCH] i.ann.maskrcnn: ommit info about the patch need in docs --- .../i.ann.maskrcnn/i.ann.maskrcnn.html | 25 ++----------------- 1 file changed, 2 insertions(+), 23 deletions(-) diff --git a/grass7/imagery/i.ann.maskrcnn/i.ann.maskrcnn.html b/grass7/imagery/i.ann.maskrcnn/i.ann.maskrcnn.html index 48302a9c51..37df63f715 100644 --- a/grass7/imagery/i.ann.maskrcnn/i.ann.maskrcnn.html +++ b/grass7/imagery/i.ann.maskrcnn/i.ann.maskrcnn.html @@ -40,33 +40,12 @@

DEPENDENCIES

-After dependencies are fulfilled, modules can be installed using -g.extension module: +After dependencies are fulfilled, modules can be installed in +GRASS GIS >= 7.8 using the g.extension module:

 g.extension extension=maskrcnn url=path/to/the/maskrcnn/folder
 
-

GRASS GIS PATCH

- -

-Unfortunately, python3 is not fully supported by GRASS GIS yet. To use -environment setting flags like --overwrite, the user has to update -his GRASS GIS with the following patch: - -

-===================================================================
---- lib/python/script/core.py	(revision 72644)
-+++ lib/python/script/core.py	(working copy)
-@@ -746,7 +746,7 @@
-         elif var.startswith(b'opt_'):
-             options[var[4:]] = val
-         elif var in [b'GRASS_OVERWRITE', b'GRASS_VERBOSE']:
--            os.environ[var] = val
-+            os.environ[var.decode("utf-8")] = val.decode("utf-8")
-         else:
-             raise SyntaxError("invalid output from g.parser: %s" % line)
-
-

MODULES