bsb-json 0.0.0b7__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-json might be problematic. Click here for more details.

@@ -1,18 +1,18 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bsb-json
3
- Version: 0.0.0b7
3
+ Version: 4.0.0
4
4
  Summary: JSON parser and utilities for the BSB.
5
5
  Author-email: Robin De Schepper <robingilbert.deschepper@unipv.it>
6
6
  Requires-Python: >=3.8
7
7
  Description-Content-Type: text/markdown
8
8
  Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
9
- Requires-Dist: bsb-core>=4.0.0b6,<=4.0.0b9999
9
+ Requires-Dist: bsb-core~=4.0
10
10
  Requires-Dist: pre-commit~=3.5 ; extra == "dev"
11
- Requires-Dist: black~=23.11 ; extra == "dev"
11
+ Requires-Dist: black~=24.0 ; extra == "dev"
12
12
  Requires-Dist: isort~=5.12 ; extra == "dev"
13
13
  Requires-Dist: bump-my-version~=0.18 ; extra == "dev"
14
14
  Requires-Dist: bsb-core[parallel] ; extra == "test"
15
- Requires-Dist: bsb-test>=0.0.0b7,<=0.0.0b9999 ; extra == "test"
15
+ Requires-Dist: bsb-test~=4.0 ; extra == "test"
16
16
  Requires-Dist: coverage~=7.0 ; extra == "test"
17
17
  Provides-Extra: dev
18
18
  Provides-Extra: test
@@ -4,4 +4,4 @@ JSON parser and utilities for the BSB.
4
4
 
5
5
  from .schema import get_json_schema, get_schema
6
6
 
7
- __version__ = "0.0.0-b7"
7
+ __version__ = "4.0.0"
@@ -10,7 +10,7 @@ license = {file = "LICENSE"}
10
10
  classifiers = ["License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"]
11
11
  dynamic = ["version", "description"]
12
12
  requires-python = ">=3.8"
13
- dependencies = ["bsb-core>=4.0.0b6,<=4.0.0b9999"]
13
+ dependencies = ["bsb-core~=4.0"]
14
14
 
15
15
  [project.entry-points."bsb.config.parsers"]
16
16
  json = "bsb_json.parser"
@@ -22,10 +22,10 @@ json_templates = "bsb_json.templates"
22
22
  name = "bsb_json"
23
23
 
24
24
  [project.optional-dependencies]
25
- test = ["bsb-core[parallel]", "bsb-test>=0.0.0b7,<=0.0.0b9999", "coverage~=7.0"]
25
+ test = ["bsb-core[parallel]", "bsb-test~=4.0", "coverage~=7.0"]
26
26
  dev = [
27
27
  "pre-commit~=3.5",
28
- "black~=23.11",
28
+ "black~=24.0",
29
29
  "isort~=5.12",
30
30
  "bump-my-version~=0.18"
31
31
  ]
@@ -34,21 +34,9 @@ dev = [
34
34
  profile = "black"
35
35
 
36
36
  [tool.bumpversion]
37
- current_version = "0.0.0-b7"
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
- ]
37
+ current_version = "4.0.0"
38
+ parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
39
+ serialize = ["{major}.{minor}.{patch}"]
52
40
  search = "{current_version}"
53
41
  replace = "{new_version}"
54
42
  regex = false
File without changes
File without changes
File without changes