Skip to content

Commit 1cd0956

Browse files
NengoBonestbekolay
NengoBones
authored andcommitted
Update to latest NengoBones
- Remove manual license classifier - Switch to new way of specifying license type
1 parent c871bb5 commit 1cd0956

File tree

6 files changed

+24
-20
lines changed

6 files changed

+24
-20
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ __pycache__
66
/.idea
77
/docs/_build
88
/tmp
9+
/.ci

.nengobones.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ project_name: KerasLMU
22
pkg_name: keras_lmu
33
repo_name: nengo/keras-lmu
44
description: Keras implementation of Legendre Memory Units
5+
license: abr-free
56

67
copyright_start: 2019
78

@@ -32,7 +33,6 @@ setup_py:
3233
classifiers:
3334
- "Development Status :: 3 - Alpha"
3435
- "Intended Audience :: Science/Research"
35-
- "License :: Free for non-commercial use"
3636
- "Operating System :: OS Independent"
3737
- "Programming Language :: Python "
3838
- "Programming Language :: Python :: 3.6"

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
repos:
44
- repo: https://github.com/psf/black
5-
rev: 20.8b0
5+
rev: 21.12b0
66
hooks:
77
- id: black
88
files: \.py$

LICENSE.rst

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,25 @@
44
KerasLMU license
55
****************
66

7-
Copyright (c) 2019-2021 Applied Brain Research
7+
Copyright (c) 2019-2022 Applied Brain Research
88

9-
KerasLMU is made available under a proprietary license
10-
that permits using, copying, sharing, and making derivative works from
11-
KerasLMU and its source code for any non-commercial purpose,
12-
as long as the above copyright notice and this permission notice
13-
are included in all copies or substantial portions of the software.
9+
**ABR License**
1410

15-
If you would like to use KerasLMU commercially,
16-
licenses can be purchased from Applied Brain Research.
17-
Please contact info@appliedbrainresearch.com for more information.
11+
KerasLMU is made available under a proprietary license, the
12+
"ABR TECHNOLOGY LICENSE AND USE AGREEMENT" (the "ABR License").
13+
The main ABR License file is available for download at
14+
`<https://www.appliedbrainresearch.com/license>`_.
15+
The entire contents of this ``LICENSE.rst`` file, including any
16+
terms and conditions herein, form part of the ABR License.
1817

19-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25-
SOFTWARE.
18+
Commercial Use Licenses are available to purchase for a yearly fee.
19+
Academic and Personal Use Licenses for KerasLMU are available at
20+
no cost.
21+
Both types of licences can be obtained from the
22+
ABR store at `<https://www.appliedbrainresearch.com/store>`_.
23+
24+
If you have any sales questions,
25+
please contact `<sales@appliedbrainresearch.com>`_.
26+
If you have any technical support questions, please post them on the ABR
27+
community forums at `<https://forum.nengo.ai/>`_ or contact
28+
`<support@appliedbrainresearch.com>`_.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888

8989
project = "KerasLMU"
9090
authors = "Applied Brain Research"
91-
copyright = "2019-2021 Applied Brain Research"
91+
copyright = "2019-2022 Applied Brain Research"
9292
version = ".".join(keras_lmu.__version__.split(".")[:2]) # Short X.Y version
9393
release = keras_lmu.__version__ # Full version, with tags
9494

keras_lmu/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
if dev is not None:
2222
version += ".dev%d" % dev
2323

24-
copyright = "Copyright (c) 2019-2021 Applied Brain Research"
24+
copyright = "Copyright (c) 2019-2022 Applied Brain Research"

0 commit comments

Comments
 (0)