Skip to content

Commit

Permalink
Updated to LGPL
Browse files Browse the repository at this point in the history
  • Loading branch information
SanPen committed Jan 14, 2022
1 parent 0b35dd1 commit e5a21bc
Show file tree
Hide file tree
Showing 5 changed files with 131 additions and 13 deletions.
23 changes: 13 additions & 10 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

61 changes: 60 additions & 1 deletion doc/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,65 @@ Join our Discord server_.
.. _server: https://discord.gg/NfMhJ4Jv



License
==============

GridCal is licensed under the LGPL license.

License of the dependencies
=============================


+--------------+------------------------------------------+
| Package | License |
+==============+==========================================+
| setuptools | MIT |
+--------------+------------------------------------------+
| wheel | MIT |
+--------------+------------------------------------------+
| PySide2 | LGPL |
+--------------+------------------------------------------+
| numpy | BSD |
+--------------+------------------------------------------+
| scipy | BSD |
+--------------+------------------------------------------+
| networkx | BSD |
+--------------+------------------------------------------+
| pandas | Apache |
+--------------+------------------------------------------+
| ortools | Apache |
+--------------+------------------------------------------+
| xlwt | BSD |
+--------------+------------------------------------------+
| xlrd | BSD |
+--------------+------------------------------------------+
| matplotlib | Python Software Foundation License (PSF) |
+--------------+------------------------------------------+
| qtconsole | BSD |
+--------------+------------------------------------------+
| pyDOE | BSD |
+--------------+------------------------------------------+
| pySOT | Specific, but similar to BSD |
+--------------+------------------------------------------+
| openpyxl | MIT |
+--------------+------------------------------------------+
| smopy | BSD |
+--------------+------------------------------------------+
| chardet | LGPL |
+--------------+------------------------------------------+
| scikit-learn | OSI approved (new BSD) |
+--------------+------------------------------------------+
| geopy | MIT |
+--------------+------------------------------------------+
| pytest | MIT |
+--------------+------------------------------------------+
| h5py | BSD |
+--------------+------------------------------------------+
| numba | BSD |
+--------------+------------------------------------------+
| folium | MIT |
+--------------+------------------------------------------+
| pyproj | MIT |
+--------------+------------------------------------------+


3 changes: 2 additions & 1 deletion doc/change_log.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ This section describes the changes introduced at each Version.

\* Short releases indicate the fix of a critical bug.

Version 4.3.6
Version 4.4.0
^^^^^^^^^^^^^^^

- Changed the license to LGPL
- Improved HVDC power flow control management
- Added the license directly in the about box, featuring the linking exceptions for Bentayga and Newton.
- Rearranged menus oon the GUI.
Expand Down
55 changes: 55 additions & 0 deletions src/GridCal/LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -165,3 +165,58 @@ or Newton.
The author of GridCal (Santiago Peñate-Vera) Is also the author of Bentayga
and NewtonNative, hence the ability to make the exemptions.

-----------------------------------------------------------------------------
List of strict dependencies
-----------------------------------------------------------------------------

+--------------+------------------------------------------+
| Package | License |
+==============+==========================================+
| setuptools | MIT |
+--------------+------------------------------------------+
| wheel | MIT |
+--------------+------------------------------------------+
| PySide2 | LGPL |
+--------------+------------------------------------------+
| numpy | BSD |
+--------------+------------------------------------------+
| scipy | BSD |
+--------------+------------------------------------------+
| networkx | BSD |
+--------------+------------------------------------------+
| pandas | Apache |
+--------------+------------------------------------------+
| ortools | Apache |
+--------------+------------------------------------------+
| xlwt | BSD |
+--------------+------------------------------------------+
| xlrd | BSD |
+--------------+------------------------------------------+
| matplotlib | Python Software Foundation License (PSF) |
+--------------+------------------------------------------+
| qtconsole | BSD |
+--------------+------------------------------------------+
| pyDOE | BSD |
+--------------+------------------------------------------+
| pySOT | Specific, but similar to BSD |
+--------------+------------------------------------------+
| openpyxl | MIT |
+--------------+------------------------------------------+
| smopy | BSD |
+--------------+------------------------------------------+
| chardet | LGPL |
+--------------+------------------------------------------+
| scikit-learn | OSI approved (new BSD) |
+--------------+------------------------------------------+
| geopy | MIT |
+--------------+------------------------------------------+
| pytest | MIT |
+--------------+------------------------------------------+
| h5py | BSD |
+--------------+------------------------------------------+
| numba | BSD |
+--------------+------------------------------------------+
| folium | MIT |
+--------------+------------------------------------------+
| pyproj | MIT |
+--------------+------------------------------------------+
2 changes: 1 addition & 1 deletion src/GridCal/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import datetime
_current_year_ = datetime.datetime.now().year

__GridCal_VERSION__ = "4.3.6"
__GridCal_VERSION__ = "4.4.0"

url = 'https://github.com/SanPen/GridCal'

Expand Down

0 comments on commit e5a21bc

Please sign in to comment.