bsb-arbor 0.0.0b3__tar.gz → 4.0.0rc2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of bsb-arbor might be problematic. Click here for more details.
- {bsb_arbor-0.0.0b3 → bsb_arbor-4.0.0rc2}/PKG-INFO +5 -5
- {bsb_arbor-0.0.0b3 → bsb_arbor-4.0.0rc2}/bsb_arbor/__init__.py +1 -1
- {bsb_arbor-0.0.0b3 → bsb_arbor-4.0.0rc2}/pyproject.toml +69 -64
- {bsb_arbor-0.0.0b3 → bsb_arbor-4.0.0rc2}/LICENSE +0 -0
- {bsb_arbor-0.0.0b3 → bsb_arbor-4.0.0rc2}/README.md +0 -0
- {bsb_arbor-0.0.0b3 → bsb_arbor-4.0.0rc2}/bsb_arbor/adapter.py +0 -0
- {bsb_arbor-0.0.0b3 → bsb_arbor-4.0.0rc2}/bsb_arbor/cell.py +0 -0
- {bsb_arbor-0.0.0b3 → bsb_arbor-4.0.0rc2}/bsb_arbor/connection.py +0 -0
- {bsb_arbor-0.0.0b3 → bsb_arbor-4.0.0rc2}/bsb_arbor/device.py +0 -0
- {bsb_arbor-0.0.0b3 → bsb_arbor-4.0.0rc2}/bsb_arbor/devices/__init__.py +0 -0
- {bsb_arbor-0.0.0b3 → bsb_arbor-4.0.0rc2}/bsb_arbor/devices/poisson_generator.py +0 -0
- {bsb_arbor-0.0.0b3 → bsb_arbor-4.0.0rc2}/bsb_arbor/devices/probe.py +0 -0
- {bsb_arbor-0.0.0b3 → bsb_arbor-4.0.0rc2}/bsb_arbor/devices/spike_recorder.py +0 -0
- {bsb_arbor-0.0.0b3 → bsb_arbor-4.0.0rc2}/bsb_arbor/simulation.py +0 -0
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: bsb-arbor
|
|
3
|
-
Version:
|
|
3
|
+
Version: 4.0.0rc2
|
|
4
4
|
Summary: Arbor simulation adapter for the BSB framework
|
|
5
5
|
Author-email: Robin De Schepper <robingilbert.deschepper@unipv.it>
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
7
7
|
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
8
8
|
Requires-Dist: numpy
|
|
9
|
-
Requires-Dist: bsb-core
|
|
9
|
+
Requires-Dist: bsb-core==4.0.0rc2
|
|
10
10
|
Requires-Dist: arbor~=0.9
|
|
11
|
-
Requires-Dist: arborize[arbor]
|
|
11
|
+
Requires-Dist: arborize[arbor]==4.0.0b6
|
|
12
12
|
Requires-Dist: bsb-core[parallel] ; extra == "test"
|
|
13
|
-
Requires-Dist: bsb-nest
|
|
14
|
-
Requires-Dist: bsb-test
|
|
13
|
+
Requires-Dist: bsb-nest==4.0.0rc2 ; extra == "test"
|
|
14
|
+
Requires-Dist: bsb-test==4.0.0rc2 ; extra == "test"
|
|
15
15
|
Requires-Dist: coverage~=7.0 ; extra == "test"
|
|
16
16
|
Provides-Extra: test
|
|
17
17
|
|
|
@@ -1,65 +1,70 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["flit_core >=3.2,<4"]
|
|
3
|
-
build-backend = "flit_core.buildapi"
|
|
4
|
-
|
|
5
|
-
[project]
|
|
6
|
-
name = "bsb-arbor"
|
|
7
|
-
authors = [{name = "Robin De Schepper", email = "robingilbert.deschepper@unipv.it"}]
|
|
8
|
-
readme = "README.md"
|
|
9
|
-
license = {file = "LICENSE"}
|
|
10
|
-
classifiers = ["License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"]
|
|
11
|
-
dynamic = ["version", "description"]
|
|
12
|
-
dependencies = [
|
|
13
|
-
"numpy",
|
|
14
|
-
"bsb-core
|
|
15
|
-
"arbor~=0.9",
|
|
16
|
-
"arborize[arbor]
|
|
17
|
-
]
|
|
18
|
-
|
|
19
|
-
[project.entry-points."bsb.simulation_backends"]
|
|
20
|
-
arbor = "bsb_arbor"
|
|
21
|
-
|
|
22
|
-
[tool.flit.module]
|
|
23
|
-
name = "bsb_arbor"
|
|
24
|
-
|
|
25
|
-
[project.optional-dependencies]
|
|
26
|
-
test = [
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["flit_core >=3.2,<4"]
|
|
3
|
+
build-backend = "flit_core.buildapi"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "bsb-arbor"
|
|
7
|
+
authors = [{name = "Robin De Schepper", email = "robingilbert.deschepper@unipv.it"}]
|
|
8
|
+
readme = "README.md"
|
|
9
|
+
license = {file = "LICENSE"}
|
|
10
|
+
classifiers = ["License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"]
|
|
11
|
+
dynamic = ["version", "description"]
|
|
12
|
+
dependencies = [
|
|
13
|
+
"numpy",
|
|
14
|
+
"bsb-core==4.0.0rc2",
|
|
15
|
+
"arbor~=0.9",
|
|
16
|
+
"arborize[arbor]==4.0.0b6"
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[project.entry-points."bsb.simulation_backends"]
|
|
20
|
+
arbor = "bsb_arbor"
|
|
21
|
+
|
|
22
|
+
[tool.flit.module]
|
|
23
|
+
name = "bsb_arbor"
|
|
24
|
+
|
|
25
|
+
[project.optional-dependencies]
|
|
26
|
+
test = [
|
|
27
|
+
"bsb-core[parallel]",
|
|
28
|
+
"bsb-nest==4.0.0rc2",
|
|
29
|
+
"bsb-test==4.0.0rc2",
|
|
30
|
+
"coverage~=7.0"
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[tool.isort]
|
|
34
|
+
profile = "black"
|
|
35
|
+
|
|
36
|
+
[tool.bumpversion]
|
|
37
|
+
current_version = "4.0.0-rc2"
|
|
38
|
+
parse = """(?x)
|
|
39
|
+
(?P<major>0|[1-9]\\d*)\\.
|
|
40
|
+
(?P<minor>0|[1-9]\\d*)\\.
|
|
41
|
+
(?P<patch>0|[1-9]\\d*)
|
|
42
|
+
(?:
|
|
43
|
+
- # dash seperator for pre-release section
|
|
44
|
+
(?P<pre_l>[a-zA-Z-]+) # pre-release label
|
|
45
|
+
(?P<pre_n>0|[1-9]\\d*) # pre-release version number
|
|
46
|
+
)? # pre-release section is optional
|
|
47
|
+
"""
|
|
48
|
+
serialize = [
|
|
49
|
+
"{major}.{minor}.{patch}-{pre_l}{pre_n}",
|
|
50
|
+
"{major}.{minor}.{patch}",
|
|
51
|
+
]
|
|
52
|
+
search = "{current_version}"
|
|
53
|
+
replace = "{new_version}"
|
|
54
|
+
regex = false
|
|
55
|
+
ignore_missing_version = false
|
|
56
|
+
tag = true
|
|
57
|
+
sign_tags = false
|
|
58
|
+
tag_name = "v{new_version}"
|
|
59
|
+
tag_message = "Bump version: {current_version} → {new_version}"
|
|
60
|
+
allow_dirty = false
|
|
61
|
+
commit = true
|
|
62
|
+
message = "Bump version: {current_version} → {new_version}"
|
|
63
|
+
commit_args = "--no-verify"
|
|
64
|
+
|
|
65
|
+
[tool.bumpversion.parts.pre_l]
|
|
66
|
+
values = ["dev", "a", "b", "rc", "final"]
|
|
67
|
+
optional_value = "final"
|
|
68
|
+
|
|
69
|
+
[[tool.bumpversion.files]]
|
|
65
70
|
filename = "bsb_arbor/__init__.py"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|