bsb-arbor 0.0.0b3__tar.gz → 4.0.0__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.0
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
- Requires-Dist: numpy
9
- Requires-Dist: bsb-core>=4.0.0b0,<=4.0.0b9999
8
+ Requires-Dist: numpy~=1.21
9
+ Requires-Dist: bsb-core~=4.0
10
10
  Requires-Dist: arbor~=0.9
11
- Requires-Dist: arborize[arbor]>=4.0.0b1
11
+ Requires-Dist: arborize[arbor]~=4.0
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 ; extra == "test"
14
+ Requires-Dist: bsb-test~=4.0 ; 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"
12
12
  __plugin__ = SimulationBackendPlugin(Simulation=ArborSimulation, Adapter=ArborAdapter)
@@ -2,9 +2,9 @@ import itertools
2
2
  import itertools as it
3
3
  import time
4
4
  import typing
5
- import numpy as np
6
5
 
7
6
  import arbor
7
+ import numpy as np
8
8
  from bsb import (
9
9
  MPI,
10
10
  AdapterError,
@@ -10,10 +10,10 @@ license = {file = "LICENSE"}
10
10
  classifiers = ["License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"]
11
11
  dynamic = ["version", "description"]
12
12
  dependencies = [
13
- "numpy",
14
- "bsb-core>=4.0.0b0,<=4.0.0b9999",
13
+ "numpy~=1.21",
14
+ "bsb-core~=4.0",
15
15
  "arbor~=0.9",
16
- "arborize[arbor]>=4.0.0b1"
16
+ "arborize[arbor]~=4.0"
17
17
  ]
18
18
 
19
19
  [project.entry-points."bsb.simulation_backends"]
@@ -23,27 +23,20 @@ arbor = "bsb_arbor"
23
23
  name = "bsb_arbor"
24
24
 
25
25
  [project.optional-dependencies]
26
- test = ["bsb-core[parallel]", "bsb-nest>=0.0.0b0", "bsb-test>=0.0.0b0", "coverage~=7.0"]
26
+ test = [
27
+ "bsb-core[parallel]",
28
+ "bsb-nest~=4.0",
29
+ "bsb-test~=4.0",
30
+ "coverage~=7.0"
31
+ ]
27
32
 
28
33
  [tool.isort]
29
34
  profile = "black"
30
35
 
31
36
  [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
- ]
37
+ current_version = "4.0.0"
38
+ parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
39
+ serialize = ["{major}.{minor}.{patch}"]
47
40
  search = "{current_version}"
48
41
  replace = "{new_version}"
49
42
  regex = false
File without changes
File without changes
File without changes