From 22930a04f27f4247fccfcf71e32573389b448254 Mon Sep 17 00:00:00 2001 From: James Parrott <80779630+JamesParrott@users.noreply.github.com> Date: Wed, 19 Apr 2023 17:14:17 +0100 Subject: [PATCH] Version 2.5.0. Adds Nurbs Curves to document --- README.md | 2 +- dev/tests/create_random_grid_network.py | 2 +- sDNA_GH/custom/data_cruncher.py | 2 +- sDNA_GH/custom/gdm_from_GH_Datatree.py | 2 +- sDNA_GH/custom/logging_wrapper.py | 2 +- sDNA_GH/custom/options_manager.py | 2 +- sDNA_GH/custom/pyshp_wrapper.py | 2 +- sDNA_GH/custom/skel/add_params.py | 2 +- sDNA_GH/custom/skel/basic/ghdoc.py | 2 +- sDNA_GH/custom/skel/basic/quacks_like.py | 2 +- sDNA_GH/custom/skel/basic/smart_comp.py | 2 +- sDNA_GH/custom/skel/builder.py | 2 +- sDNA_GH/custom/skel/tools/helpers/checkers.py | 2 +- sDNA_GH/custom/skel/tools/helpers/funcs.py | 2 +- sDNA_GH/custom/skel/tools/helpers/rhino_gh_geom.py | 2 +- sDNA_GH/custom/skel/tools/inserter.py | 2 +- sDNA_GH/custom/skel/tools/name_mapper.py | 2 +- sDNA_GH/custom/skel/tools/runner.py | 2 +- sDNA_GH/custom/tools.py | 2 +- sDNA_GH/dev_tools/dev_tools.py | 2 +- sDNA_GH/dev_tools/unload_sDNA_GH.py | 2 +- sDNA_GH/launcher.py | 2 +- sDNA_GH/main.py | 2 +- sDNA_GH/tests/test_cases.py | 2 +- sDNA_GH/tests/unit_tests/sDNA_GH_unit_tests.py | 2 +- sDNA_GH/tests/unit_tests/skel_unit_tests.py | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/README.md b/README.md index 97d667d..522ab61 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ sDNA_GH: - Displays the results from sDNA by colouring a new layer of new polylines or the original ones. ## User manual. -__version__ = '2.4.0' +__version__ = '2.5.0' ## Table of contents diff --git a/dev/tests/create_random_grid_network.py b/dev/tests/create_random_grid_network.py index c2a0a37..ec335b8 100644 --- a/dev/tests/create_random_grid_network.py +++ b/dev/tests/create_random_grid_network.py @@ -28,7 +28,7 @@ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' from random import random as random_num from math import trunc as floor # for an int, not a float. math.floor(2.33) == 2.0; math.trunc(2.33) == 2 diff --git a/sDNA_GH/custom/data_cruncher.py b/sDNA_GH/custom/data_cruncher.py index 26c9f66..d40cb1e 100644 --- a/sDNA_GH/custom/data_cruncher.py +++ b/sDNA_GH/custom/data_cruncher.py @@ -37,7 +37,7 @@ """ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' import logging import warnings diff --git a/sDNA_GH/custom/gdm_from_GH_Datatree.py b/sDNA_GH/custom/gdm_from_GH_Datatree.py index b78a7cb..824081d 100644 --- a/sDNA_GH/custom/gdm_from_GH_Datatree.py +++ b/sDNA_GH/custom/gdm_from_GH_Datatree.py @@ -29,7 +29,7 @@ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' import logging diff --git a/sDNA_GH/custom/logging_wrapper.py b/sDNA_GH/custom/logging_wrapper.py index a3a2cb5..fae9a40 100644 --- a/sDNA_GH/custom/logging_wrapper.py +++ b/sDNA_GH/custom/logging_wrapper.py @@ -27,7 +27,7 @@ # SOFTWARE. __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' import sys import os diff --git a/sDNA_GH/custom/options_manager.py b/sDNA_GH/custom/options_manager.py index 14c3563..6561190 100644 --- a/sDNA_GH/custom/options_manager.py +++ b/sDNA_GH/custom/options_manager.py @@ -28,7 +28,7 @@ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' """ Functions to override namedtuples, from dicts, toml files and other named tuples e.g. for options data structures. diff --git a/sDNA_GH/custom/pyshp_wrapper.py b/sDNA_GH/custom/pyshp_wrapper.py index 813b2a0..4760851 100644 --- a/sDNA_GH/custom/pyshp_wrapper.py +++ b/sDNA_GH/custom/pyshp_wrapper.py @@ -28,7 +28,7 @@ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' """ Reads .shp files, and parses data and writes .shp files from any iterable. """ diff --git a/sDNA_GH/custom/skel/add_params.py b/sDNA_GH/custom/skel/add_params.py index e121839..c958152 100644 --- a/sDNA_GH/custom/skel/add_params.py +++ b/sDNA_GH/custom/skel/add_params.py @@ -29,7 +29,7 @@ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' from collections import OrderedDict import logging diff --git a/sDNA_GH/custom/skel/basic/ghdoc.py b/sDNA_GH/custom/skel/basic/ghdoc.py index a9d6b65..3c47498 100644 --- a/sDNA_GH/custom/skel/basic/ghdoc.py +++ b/sDNA_GH/custom/skel/basic/ghdoc.py @@ -29,7 +29,7 @@ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' import Rhino diff --git a/sDNA_GH/custom/skel/basic/quacks_like.py b/sDNA_GH/custom/skel/basic/quacks_like.py index b0fa0ab..ae8f4f2 100644 --- a/sDNA_GH/custom/skel/basic/quacks_like.py +++ b/sDNA_GH/custom/skel/basic/quacks_like.py @@ -1,7 +1,7 @@ #! /usr/bin/python # -*- coding: utf-8 -*- __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' import abc diff --git a/sDNA_GH/custom/skel/basic/smart_comp.py b/sDNA_GH/custom/skel/basic/smart_comp.py index d0fc9f3..ec4068d 100644 --- a/sDNA_GH/custom/skel/basic/smart_comp.py +++ b/sDNA_GH/custom/skel/basic/smart_comp.py @@ -50,7 +50,7 @@ """ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' import logging import inspect diff --git a/sDNA_GH/custom/skel/builder.py b/sDNA_GH/custom/skel/builder.py index c5a24b9..c950786 100644 --- a/sDNA_GH/custom/skel/builder.py +++ b/sDNA_GH/custom/skel/builder.py @@ -29,7 +29,7 @@ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' import os import shutil diff --git a/sDNA_GH/custom/skel/tools/helpers/checkers.py b/sDNA_GH/custom/skel/tools/helpers/checkers.py index f94d5c6..7f2758c 100644 --- a/sDNA_GH/custom/skel/tools/helpers/checkers.py +++ b/sDNA_GH/custom/skel/tools/helpers/checkers.py @@ -29,7 +29,7 @@ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' import os diff --git a/sDNA_GH/custom/skel/tools/helpers/funcs.py b/sDNA_GH/custom/skel/tools/helpers/funcs.py index a18cb57..592d52b 100644 --- a/sDNA_GH/custom/skel/tools/helpers/funcs.py +++ b/sDNA_GH/custom/skel/tools/helpers/funcs.py @@ -27,7 +27,7 @@ # SOFTWARE. __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' import os import logging diff --git a/sDNA_GH/custom/skel/tools/helpers/rhino_gh_geom.py b/sDNA_GH/custom/skel/tools/helpers/rhino_gh_geom.py index 58108e3..5712741 100644 --- a/sDNA_GH/custom/skel/tools/helpers/rhino_gh_geom.py +++ b/sDNA_GH/custom/skel/tools/helpers/rhino_gh_geom.py @@ -29,7 +29,7 @@ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' import os diff --git a/sDNA_GH/custom/skel/tools/inserter.py b/sDNA_GH/custom/skel/tools/inserter.py index 3bb36bb..ba64d02 100644 --- a/sDNA_GH/custom/skel/tools/inserter.py +++ b/sDNA_GH/custom/skel/tools/inserter.py @@ -29,7 +29,7 @@ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' import logging import collections diff --git a/sDNA_GH/custom/skel/tools/name_mapper.py b/sDNA_GH/custom/skel/tools/name_mapper.py index 03c740e..8ff4ea5 100644 --- a/sDNA_GH/custom/skel/tools/name_mapper.py +++ b/sDNA_GH/custom/skel/tools/name_mapper.py @@ -1,7 +1,7 @@ #! /usr/bin/python # -*- coding: utf-8 -*- __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' import logging import collections diff --git a/sDNA_GH/custom/skel/tools/runner.py b/sDNA_GH/custom/skel/tools/runner.py index 9fc1f01..295d6d2 100644 --- a/sDNA_GH/custom/skel/tools/runner.py +++ b/sDNA_GH/custom/skel/tools/runner.py @@ -29,7 +29,7 @@ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' import logging diff --git a/sDNA_GH/custom/tools.py b/sDNA_GH/custom/tools.py index 9deff92..5a634b7 100644 --- a/sDNA_GH/custom/tools.py +++ b/sDNA_GH/custom/tools.py @@ -34,7 +34,7 @@ """ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' import os import sys diff --git a/sDNA_GH/dev_tools/dev_tools.py b/sDNA_GH/dev_tools/dev_tools.py index 6811966..f9fea5d 100644 --- a/sDNA_GH/dev_tools/dev_tools.py +++ b/sDNA_GH/dev_tools/dev_tools.py @@ -29,7 +29,7 @@ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' import os import logging diff --git a/sDNA_GH/dev_tools/unload_sDNA_GH.py b/sDNA_GH/dev_tools/unload_sDNA_GH.py index 37f27ef..2e3bfca 100644 --- a/sDNA_GH/dev_tools/unload_sDNA_GH.py +++ b/sDNA_GH/dev_tools/unload_sDNA_GH.py @@ -33,7 +33,7 @@ """ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' from ghpythonlib.componentbase import executingcomponent as component diff --git a/sDNA_GH/launcher.py b/sDNA_GH/launcher.py index e0b8921..def4d03 100644 --- a/sDNA_GH/launcher.py +++ b/sDNA_GH/launcher.py @@ -63,7 +63,7 @@ """ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' diff --git a/sDNA_GH/main.py b/sDNA_GH/main.py index 5d6b01c..617a62e 100644 --- a/sDNA_GH/main.py +++ b/sDNA_GH/main.py @@ -43,7 +43,7 @@ """ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' import sys import os diff --git a/sDNA_GH/tests/test_cases.py b/sDNA_GH/tests/test_cases.py index 7b152e7..cf7a13d 100644 --- a/sDNA_GH/tests/test_cases.py +++ b/sDNA_GH/tests/test_cases.py @@ -29,7 +29,7 @@ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' import sys diff --git a/sDNA_GH/tests/unit_tests/sDNA_GH_unit_tests.py b/sDNA_GH/tests/unit_tests/sDNA_GH_unit_tests.py index 703fcfe..c239ab0 100644 --- a/sDNA_GH/tests/unit_tests/sDNA_GH_unit_tests.py +++ b/sDNA_GH/tests/unit_tests/sDNA_GH_unit_tests.py @@ -29,7 +29,7 @@ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' import sys import os diff --git a/sDNA_GH/tests/unit_tests/skel_unit_tests.py b/sDNA_GH/tests/unit_tests/skel_unit_tests.py index b6c6f6a..58a8ae9 100644 --- a/sDNA_GH/tests/unit_tests/skel_unit_tests.py +++ b/sDNA_GH/tests/unit_tests/skel_unit_tests.py @@ -29,7 +29,7 @@ __author__ = 'James Parrott' -__version__ = '2.4.0' +__version__ = '2.5.0' import sys import os