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.

@@ -1,17 +1,17 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bsb-arbor
3
- Version: 0.0.0b3
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>=4.0.0b0,<=4.0.0b9999
9
+ Requires-Dist: bsb-core==4.0.0rc2
10
10
  Requires-Dist: arbor~=0.9
11
- Requires-Dist: arborize[arbor]>=4.0.0b1
11
+ Requires-Dist: arborize[arbor]==4.0.0b6
12
12
  Requires-Dist: bsb-core[parallel] ; extra == "test"
13
- Requires-Dist: bsb-nest>=0.0.0b0 ; extra == "test"
14
- Requires-Dist: bsb-test>=0.0.0b0 ; extra == "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
 
@@ -8,5 +8,5 @@ from . import devices
8
8
  from .adapter import ArborAdapter
9
9
  from .simulation import ArborSimulation
10
10
 
11
- __version__ = "0.0.0-b3"
11
+ __version__ = "4.0.0-rc2"
12
12
  __plugin__ = SimulationBackendPlugin(Simulation=ArborSimulation, Adapter=ArborAdapter)
@@ -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>=4.0.0b0,<=4.0.0b9999",
15
- "arbor~=0.9",
16
- "arborize[arbor]>=4.0.0b1"
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 = ["bsb-core[parallel]", "bsb-nest>=0.0.0b0", "bsb-test>=0.0.0b0", "coverage~=7.0"]
27
-
28
- [tool.isort]
29
- profile = "black"
30
-
31
- [tool.bumpversion]
32
- current_version = "0.0.0-b3"
33
- parse = """(?x)
34
- (?P<major>0|[1-9]\\d*)\\.
35
- (?P<minor>0|[1-9]\\d*)\\.
36
- (?P<patch>0|[1-9]\\d*)
37
- (?:
38
- - # dash seperator for pre-release section
39
- (?P<pre_l>[a-zA-Z-]+) # pre-release label
40
- (?P<pre_n>0|[1-9]\\d*) # pre-release version number
41
- )? # pre-release section is optional
42
- """
43
- serialize = [
44
- "{major}.{minor}.{patch}-{pre_l}{pre_n}",
45
- "{major}.{minor}.{patch}",
46
- ]
47
- search = "{current_version}"
48
- replace = "{new_version}"
49
- regex = false
50
- ignore_missing_version = false
51
- tag = true
52
- sign_tags = false
53
- tag_name = "v{new_version}"
54
- tag_message = "Bump version: {current_version} → {new_version}"
55
- allow_dirty = false
56
- commit = true
57
- message = "Bump version: {current_version} → {new_version}"
58
- commit_args = "--no-verify"
59
-
60
- [tool.bumpversion.parts.pre_l]
61
- values = ["dev", "a", "b", "rc", "final"]
62
- optional_value = "final"
63
-
64
- [[tool.bumpversion.files]]
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