grimoirelab 1.9.2__tar.gz → 1.10.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.
- {grimoirelab-1.9.2 → grimoirelab-1.10.0}/PKG-INFO +20 -16
- {grimoirelab-1.9.2 → grimoirelab-1.10.0}/README.md +7 -3
- grimoirelab-1.10.0/grimoirelab/_version.py +2 -0
- {grimoirelab-1.9.2 → grimoirelab-1.10.0}/pyproject.toml +14 -14
- grimoirelab-1.9.2/grimoirelab/_version.py +0 -2
- {grimoirelab-1.9.2 → grimoirelab-1.10.0}/LICENSE +0 -0
- {grimoirelab-1.9.2 → grimoirelab-1.10.0}/grimoirelab/__init__.py +0 -0
- {grimoirelab-1.9.2 → grimoirelab-1.10.0}/grimoirelab/grimoirelab.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: grimoirelab
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.10.0
|
4
4
|
Summary: Tool set for software development analytics
|
5
5
|
Home-page: https://chaoss.github.io/grimoirelab/
|
6
6
|
License: GPL-3.0+
|
@@ -15,19 +15,19 @@ Classifier: Programming Language :: Python :: 3.9
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.10
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
17
17
|
Classifier: Topic :: Software Development
|
18
|
-
Requires-Dist: cereslib (>=1.0.
|
19
|
-
Requires-Dist: graal (>=1.1.
|
20
|
-
Requires-Dist: grimoire-elk (>=1.3.
|
18
|
+
Requires-Dist: cereslib (>=1.0.10)
|
19
|
+
Requires-Dist: graal (>=1.1.3)
|
20
|
+
Requires-Dist: grimoire-elk (>=1.3.5)
|
21
21
|
Requires-Dist: grimoirelab-panels (>=1.1.2)
|
22
|
-
Requires-Dist: grimoirelab-toolkit (>=1.0.
|
23
|
-
Requires-Dist: kidash (>=1.0.
|
24
|
-
Requires-Dist: perceval (>=1.
|
25
|
-
Requires-Dist: perceval-mozilla (>=1.0.
|
26
|
-
Requires-Dist: perceval-opnfv (>=1.0.
|
27
|
-
Requires-Dist: perceval-puppet (>=1.0.
|
28
|
-
Requires-Dist: perceval-weblate (>=1.0.
|
29
|
-
Requires-Dist: sirmordred (>=1.1.
|
30
|
-
Requires-Dist: sortinghat (>=1.
|
22
|
+
Requires-Dist: grimoirelab-toolkit (>=1.0.10)
|
23
|
+
Requires-Dist: kidash (>=1.0.11)
|
24
|
+
Requires-Dist: perceval (>=1.2.0)
|
25
|
+
Requires-Dist: perceval-mozilla (>=1.0.12)
|
26
|
+
Requires-Dist: perceval-opnfv (>=1.0.12)
|
27
|
+
Requires-Dist: perceval-puppet (>=1.0.12)
|
28
|
+
Requires-Dist: perceval-weblate (>=1.0.12)
|
29
|
+
Requires-Dist: sirmordred (>=1.1.7)
|
30
|
+
Requires-Dist: sortinghat (>=1.7.0)
|
31
31
|
Project-URL: Bug Tracker, https://github.com/chaoss/grimoirelab/issues
|
32
32
|
Project-URL: Repository, https://github.com/chaoss/grimoirelab
|
33
33
|
Description-Content-Type: text/markdown
|
@@ -62,7 +62,7 @@ Docker version 19.03.1, build 74b1e89
|
|
62
62
|
root@test-68b8628f:~# docker-compose --version
|
63
63
|
docker-compose version 1.22.0, build f46880fe
|
64
64
|
```
|
65
|
-
* **Hardware**: 2 CPU cores, 8GB memory RAM and [enough virtual memory for Elasticsearch](https://www.elastic.co/guide/en/elasticsearch/reference/current/vm-max-map-count.html)
|
65
|
+
* **Hardware**: 2 CPU cores, 8GB memory RAM and [enough virtual memory for Elasticsearch](https://www.elastic.co/guide/en/elasticsearch/reference/current/vm-max-map-count.html)
|
66
66
|
|
67
67
|
Steps:
|
68
68
|
1. Clone this project:
|
@@ -81,7 +81,7 @@ More details or troubleshooting in the [docker-compose folder](./docker-compose/
|
|
81
81
|
|
82
82
|
## Using `docker run`
|
83
83
|
|
84
|
-
Requirements:
|
84
|
+
Requirements:
|
85
85
|
* **Software**: [git](https://git-scm.com/) and [docker client](https://docs.docker.com/get-docker/). An example of working configuration:
|
86
86
|
```console
|
87
87
|
root@test-68b8628f:~# git --version
|
@@ -101,7 +101,7 @@ git clone https://github.com/chaoss/grimoirelab
|
|
101
101
|
2. Go to the project folder and run the following command:
|
102
102
|
```console
|
103
103
|
cd grimoirelab
|
104
|
-
docker run --net=host \
|
104
|
+
docker run --net=host \
|
105
105
|
-v $(pwd)/default-grimoirelab-settings/projects.json:/home/grimoire/conf/projects.json \
|
106
106
|
-v $(pwd)/default-grimoirelab-settings/setup-docker.cfg:/home/grimoire/conf/setup.cfg \
|
107
107
|
-t grimoirelab/grimoirelab
|
@@ -111,6 +111,10 @@ Your dashboard will be ready after a while at `http://localhost:8000`. The waiti
|
|
111
111
|
|
112
112
|
More details in the [docker folder](./docker/README.md).
|
113
113
|
|
114
|
+
## Using on FreeBSD
|
115
|
+
|
116
|
+
Recently [FreeBSD](https://www.freebsd.org) has adopted Grimoirelab for their Bugzilla Analysis and have [deployed Grimoirelab](https://grimore.freebsd.org) in their cluster. [FreeBSD Foundation](https://www.freebsdfoundation.org) has been kind enough to share the process of running Grimoire on FreeBSD which is available [here](./FreeBSD.md). This guide will also help who are interested in running Grimoirelab from source instead of deploying them with Docker.
|
117
|
+
|
114
118
|
# Breaking changes
|
115
119
|
|
116
120
|
## GrimoireLab `1.3.0`. SortingHat permission groups.
|
@@ -28,7 +28,7 @@ Docker version 19.03.1, build 74b1e89
|
|
28
28
|
root@test-68b8628f:~# docker-compose --version
|
29
29
|
docker-compose version 1.22.0, build f46880fe
|
30
30
|
```
|
31
|
-
* **Hardware**: 2 CPU cores, 8GB memory RAM and [enough virtual memory for Elasticsearch](https://www.elastic.co/guide/en/elasticsearch/reference/current/vm-max-map-count.html)
|
31
|
+
* **Hardware**: 2 CPU cores, 8GB memory RAM and [enough virtual memory for Elasticsearch](https://www.elastic.co/guide/en/elasticsearch/reference/current/vm-max-map-count.html)
|
32
32
|
|
33
33
|
Steps:
|
34
34
|
1. Clone this project:
|
@@ -47,7 +47,7 @@ More details or troubleshooting in the [docker-compose folder](./docker-compose/
|
|
47
47
|
|
48
48
|
## Using `docker run`
|
49
49
|
|
50
|
-
Requirements:
|
50
|
+
Requirements:
|
51
51
|
* **Software**: [git](https://git-scm.com/) and [docker client](https://docs.docker.com/get-docker/). An example of working configuration:
|
52
52
|
```console
|
53
53
|
root@test-68b8628f:~# git --version
|
@@ -67,7 +67,7 @@ git clone https://github.com/chaoss/grimoirelab
|
|
67
67
|
2. Go to the project folder and run the following command:
|
68
68
|
```console
|
69
69
|
cd grimoirelab
|
70
|
-
docker run --net=host \
|
70
|
+
docker run --net=host \
|
71
71
|
-v $(pwd)/default-grimoirelab-settings/projects.json:/home/grimoire/conf/projects.json \
|
72
72
|
-v $(pwd)/default-grimoirelab-settings/setup-docker.cfg:/home/grimoire/conf/setup.cfg \
|
73
73
|
-t grimoirelab/grimoirelab
|
@@ -77,6 +77,10 @@ Your dashboard will be ready after a while at `http://localhost:8000`. The waiti
|
|
77
77
|
|
78
78
|
More details in the [docker folder](./docker/README.md).
|
79
79
|
|
80
|
+
## Using on FreeBSD
|
81
|
+
|
82
|
+
Recently [FreeBSD](https://www.freebsd.org) has adopted Grimoirelab for their Bugzilla Analysis and have [deployed Grimoirelab](https://grimore.freebsd.org) in their cluster. [FreeBSD Foundation](https://www.freebsdfoundation.org) has been kind enough to share the process of running Grimoire on FreeBSD which is available [here](./FreeBSD.md). This guide will also help who are interested in running Grimoirelab from source instead of deploying them with Docker.
|
83
|
+
|
80
84
|
# Breaking changes
|
81
85
|
|
82
86
|
## GrimoireLab `1.3.0`. SortingHat permission groups.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "grimoirelab"
|
3
|
-
version = "1.
|
3
|
+
version = "1.10.0"
|
4
4
|
description = "Tool set for software development analytics"
|
5
5
|
authors = [
|
6
6
|
"GrimoireLab Developers"
|
@@ -38,21 +38,21 @@ classifiers = [
|
|
38
38
|
[tool.poetry.dependencies]
|
39
39
|
python = "^3.9"
|
40
40
|
|
41
|
-
grimoirelab-toolkit = {version = ">=1.0.
|
42
|
-
perceval-mozilla = {version = ">=1.0.
|
43
|
-
perceval-opnfv = {version = ">=1.0.
|
44
|
-
perceval-puppet = {version = ">=1.0.
|
45
|
-
perceval-weblate = {version = ">=1.0.
|
46
|
-
sortinghat = {version = ">=1.
|
47
|
-
kidash = {version = ">=1.0.
|
41
|
+
grimoirelab-toolkit = {version = ">=1.0.10", allow-prereleases = true}
|
42
|
+
perceval-mozilla = {version = ">=1.0.12", allow-prereleases = true}
|
43
|
+
perceval-opnfv = {version = ">=1.0.12", allow-prereleases = true}
|
44
|
+
perceval-puppet = {version = ">=1.0.12", allow-prereleases = true}
|
45
|
+
perceval-weblate = {version = ">=1.0.12", allow-prereleases = true}
|
46
|
+
sortinghat = {version = ">=1.7.0", allow-prereleases = true}
|
47
|
+
kidash = {version = ">=1.0.11", allow-prereleases = true}
|
48
48
|
grimoirelab-panels = {version = ">=1.1.2", allow-prereleases = true}
|
49
|
-
grimoire-elk = {version = ">=1.3.
|
50
|
-
sirmordred = {version = ">=1.1.
|
51
|
-
cereslib = {version = ">=1.0.
|
52
|
-
graal = {version = ">=1.1.
|
53
|
-
perceval = {version = ">=1.
|
49
|
+
grimoire-elk = {version = ">=1.3.5", allow-prereleases = true}
|
50
|
+
sirmordred = {version = ">=1.1.7", allow-prereleases = true}
|
51
|
+
cereslib = {version = ">=1.0.10", allow-prereleases = true}
|
52
|
+
graal = {version = ">=1.1.3", allow-prereleases = true}
|
53
|
+
perceval = {version = ">=1.2.0", allow-prereleases = true}
|
54
54
|
|
55
|
-
[tool.poetry.dev
|
55
|
+
[tool.poetry.group.dev.dependencies]
|
56
56
|
|
57
57
|
[build-system]
|
58
58
|
requires = ["poetry-core>=1.0.0"]
|
File without changes
|
File without changes
|
File without changes
|