Skip to content

Commit d2e8ada

Browse files
authored
Merge pull request #265 from synsense/264-update-sinabs-license-to-apache-20
264 update sinabs license to apache 2.0
2 parents c0fce4e + a70211e commit d2e8ada

File tree

7 files changed

+211
-673
lines changed

7 files changed

+211
-673
lines changed

.github/workflows/ci-pipeline.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,8 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: [ubuntu-latest]
19-
python-version: ["3.8", "3.10",]
20-
torch-version: ["1.12.0",]
21-
exclude:
22-
- os: ubuntu-latest
23-
python-version: "3.10"
24-
torch-version: "1.8.1"
19+
python-version: ["3.8",]
20+
torch-version: ["2.0.0",]
2521
steps:
2622
- uses: actions/checkout@v4
2723
- name: Set up Python ${{ matrix.python-version }}

CITATION.cff

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ keywords:
3838
- Neuromorphic Engineering
3939
- Computational Efficiency
4040
- Speck
41-
license: AGPL-3.0
41+
license: Apache-2.0
4242
doi: 10.5281/zenodo.8385545
4343
url: https://github.com/synsense/sinabs

ChangeLog

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
CHANGES
22
=======
33

4+
* Update Sinabs license to Apache 2.0
45
* Spike count plot in 'DynapcnnVisualizer' is optional
56
* `DynapcnnVisualizer` allows custom JIT filters to make readout predictions
67

LICENSE

+202-661
Large diffs are not rendered by default.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Please join us on the [#sinabs Discord channel](https://discord.gg/V6FHBZURkg)!
4444

4545
License
4646
-------
47-
Sinabs is published under AGPL v3.0. See the LICENSE file for details.
47+
Sinabs is published under Apache v2.0. See the LICENSE file for details.
4848

4949

5050
Contributing to Sinabs
@@ -61,7 +61,7 @@ In case you find this software library useful for your work please consider citi
6161
@software{sinabs,
6262
author = {Sheik, Sadique and Lenz, Gregor and Bauer, Felix and Kuepelioglu, Nogay },
6363
doi = {10.5281/zenodo.8385545},
64-
license = {AGPL-3.0},
64+
license = {Apache-2.0},
6565
title = {{SINABS: A simple Pytorch based SNN library specialised for Speck}},
6666
url = {https://github.com/synsense/sinabs}
6767
}

docs/gallery/layers/plot_alif.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
========================================
33
Adaptive Leaky Integrate and Fire (ALIF)
44
========================================
5-
:class:`~sinabs.layers.ALIF` layer with an adaptive threshold based on the output spikes.
5+
:class:`~sinabs.layers.ALIF` layer with an adaptive threshold based on the output spikes.
66
"""
77

88
import torch

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ homepage = sinabs.ai
1010
project_urls =
1111
Source code = https://github.com/synsense/sinabs
1212
Documentation = https://readthedocs.org/projects/sinabs/
13-
license = GNU AGPLv3
13+
license = Apache 2.0
1414
classifier =
1515
Development Status :: 4 - Beta
1616
Environment :: Console
1717
Intended Audience :: Science/Research
1818
Intended Audience :: Developers
19-
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
19+
License :: OSI Approved :: Apache License Version 2.0 (Apache-2.0)
2020
Programming Language :: Python :: 3
2121
keywords =
2222
spiking neural networks

0 commit comments

Comments
 (0)