grimoirelab 1.4.1rc1__tar.gz → 1.5.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.4.1rc1 → grimoirelab-1.5.0}/PKG-INFO +18 -18
- {grimoirelab-1.4.1rc1 → grimoirelab-1.5.0}/README.md +7 -7
- grimoirelab-1.5.0/grimoirelab/_version.py +2 -0
- {grimoirelab-1.4.1rc1 → grimoirelab-1.5.0}/pyproject.toml +11 -11
- grimoirelab-1.4.1rc1/grimoirelab/_version.py +0 -2
- {grimoirelab-1.4.1rc1 → grimoirelab-1.5.0}/LICENSE +0 -0
- {grimoirelab-1.4.1rc1 → grimoirelab-1.5.0}/grimoirelab/__init__.py +0 -0
- {grimoirelab-1.4.1rc1 → grimoirelab-1.5.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.5.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+
|
@@ -17,18 +17,18 @@ Classifier: Programming Language :: Python :: 3.10
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.11
|
18
18
|
Classifier: Topic :: Software Development
|
19
19
|
Requires-Dist: cereslib (>=1.0.4)
|
20
|
-
Requires-Dist: graal (>=1.0.
|
21
|
-
Requires-Dist: grimoire-elk (>=1.1.
|
20
|
+
Requires-Dist: graal (>=1.0.6)
|
21
|
+
Requires-Dist: grimoire-elk (>=1.1.5)
|
22
22
|
Requires-Dist: grimoirelab-panels (>=1.1.0)
|
23
23
|
Requires-Dist: grimoirelab-toolkit (>=1.0.4)
|
24
|
-
Requires-Dist: kidash (>=1.0.
|
25
|
-
Requires-Dist: perceval (>=1.0.
|
26
|
-
Requires-Dist: perceval-mozilla (>=1.0.
|
27
|
-
Requires-Dist: perceval-opnfv (>=1.0.
|
28
|
-
Requires-Dist: perceval-puppet (>=1.0.
|
29
|
-
Requires-Dist: perceval-weblate (>=1.0.
|
30
|
-
Requires-Dist: sirmordred (>=1.0
|
31
|
-
Requires-Dist: sortinghat (>=1.
|
24
|
+
Requires-Dist: kidash (>=1.0.5)
|
25
|
+
Requires-Dist: perceval (>=1.0.6)
|
26
|
+
Requires-Dist: perceval-mozilla (>=1.0.6)
|
27
|
+
Requires-Dist: perceval-opnfv (>=1.0.6)
|
28
|
+
Requires-Dist: perceval-puppet (>=1.0.6)
|
29
|
+
Requires-Dist: perceval-weblate (>=1.0.6)
|
30
|
+
Requires-Dist: sirmordred (>=1.1.0)
|
31
|
+
Requires-Dist: sortinghat (>=1.3.0)
|
32
32
|
Project-URL: Bug Tracker, https://github.com/chaoss/grimoirelab/issues
|
33
33
|
Project-URL: Repository, https://github.com/chaoss/grimoirelab
|
34
34
|
Description-Content-Type: text/markdown
|
@@ -68,12 +68,12 @@ docker-compose version 1.22.0, build f46880fe
|
|
68
68
|
Steps:
|
69
69
|
1. Clone this project:
|
70
70
|
```console
|
71
|
-
|
71
|
+
git clone https://github.com/chaoss/grimoirelab
|
72
72
|
```
|
73
73
|
2. Go to `docker-compose` folder and run the following command:
|
74
74
|
```console
|
75
|
-
|
76
|
-
|
75
|
+
cd grimoirelab/docker-compose
|
76
|
+
docker-compose up -d
|
77
77
|
```
|
78
78
|
|
79
79
|
Your dashboard will be ready after a while at `http://localhost:8000`. The waiting time depends on the amount of data to fetch from a repo, for small repositories you can expect your data to be visible in the dashboard after 10-15 minutes.
|
@@ -97,12 +97,12 @@ Docker version 19.03.1, build 74b1e89
|
|
97
97
|
Steps:
|
98
98
|
1. Clone this project:
|
99
99
|
```console
|
100
|
-
|
100
|
+
git clone https://github.com/chaoss/grimoirelab
|
101
101
|
```
|
102
102
|
2. Go to the project folder and run the following command:
|
103
103
|
```console
|
104
|
-
|
105
|
-
|
104
|
+
cd grimoirelab
|
105
|
+
docker run --net=host \
|
106
106
|
-v $(pwd)/default-grimoirelab-settings/projects.json:/home/grimoire/conf/projects.json \
|
107
107
|
-v $(pwd)/default-grimoirelab-settings/setup-docker.cfg:/home/grimoire/conf/setup.cfg \
|
108
108
|
-t grimoirelab/grimoirelab
|
@@ -173,7 +173,7 @@ folder includes instructions and configuration files to deploy GrimoireLab using
|
|
173
173
|
Git submodule, so its contents will not be available after cloning the repository. To
|
174
174
|
fetch all the data, and get the latest version, you can run the following command:
|
175
175
|
```console
|
176
|
-
|
176
|
+
git submodule update --init --remote
|
177
177
|
```
|
178
178
|
|
179
179
|
* How releases of GrimoireLab are built and tested: [Building](BUILDING.md)
|
@@ -33,12 +33,12 @@ docker-compose version 1.22.0, build f46880fe
|
|
33
33
|
Steps:
|
34
34
|
1. Clone this project:
|
35
35
|
```console
|
36
|
-
|
36
|
+
git clone https://github.com/chaoss/grimoirelab
|
37
37
|
```
|
38
38
|
2. Go to `docker-compose` folder and run the following command:
|
39
39
|
```console
|
40
|
-
|
41
|
-
|
40
|
+
cd grimoirelab/docker-compose
|
41
|
+
docker-compose up -d
|
42
42
|
```
|
43
43
|
|
44
44
|
Your dashboard will be ready after a while at `http://localhost:8000`. The waiting time depends on the amount of data to fetch from a repo, for small repositories you can expect your data to be visible in the dashboard after 10-15 minutes.
|
@@ -62,12 +62,12 @@ Docker version 19.03.1, build 74b1e89
|
|
62
62
|
Steps:
|
63
63
|
1. Clone this project:
|
64
64
|
```console
|
65
|
-
|
65
|
+
git clone https://github.com/chaoss/grimoirelab
|
66
66
|
```
|
67
67
|
2. Go to the project folder and run the following command:
|
68
68
|
```console
|
69
|
-
|
70
|
-
|
69
|
+
cd grimoirelab
|
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
|
@@ -138,7 +138,7 @@ folder includes instructions and configuration files to deploy GrimoireLab using
|
|
138
138
|
Git submodule, so its contents will not be available after cloning the repository. To
|
139
139
|
fetch all the data, and get the latest version, you can run the following command:
|
140
140
|
```console
|
141
|
-
|
141
|
+
git submodule update --init --remote
|
142
142
|
```
|
143
143
|
|
144
144
|
* How releases of GrimoireLab are built and tested: [Building](BUILDING.md)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "grimoirelab"
|
3
|
-
version = "1.
|
3
|
+
version = "1.5.0"
|
4
4
|
description = "Tool set for software development analytics"
|
5
5
|
authors = [
|
6
6
|
"GrimoireLab Developers"
|
@@ -39,18 +39,18 @@ classifiers = [
|
|
39
39
|
python = "^3.8"
|
40
40
|
|
41
41
|
grimoirelab-toolkit = {version = ">=1.0.4", allow-prereleases = true}
|
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.
|
42
|
+
perceval-mozilla = {version = ">=1.0.6", allow-prereleases = true}
|
43
|
+
perceval-opnfv = {version = ">=1.0.6", allow-prereleases = true}
|
44
|
+
perceval-puppet = {version = ">=1.0.6", allow-prereleases = true}
|
45
|
+
perceval-weblate = {version = ">=1.0.6", allow-prereleases = true}
|
46
|
+
sortinghat = {version = ">=1.3.0", allow-prereleases = true}
|
47
|
+
kidash = {version = ">=1.0.5", allow-prereleases = true}
|
48
48
|
grimoirelab-panels = {version = ">=1.1.0", allow-prereleases = true}
|
49
|
-
grimoire-elk = {version = ">=1.1.
|
50
|
-
sirmordred = {version = ">=1.0
|
49
|
+
grimoire-elk = {version = ">=1.1.5", allow-prereleases = true}
|
50
|
+
sirmordred = {version = ">=1.1.0", allow-prereleases = true}
|
51
51
|
cereslib = {version = ">=1.0.4", allow-prereleases = true}
|
52
|
-
graal = {version = ">=1.0.
|
53
|
-
perceval = {version = ">=1.0.
|
52
|
+
graal = {version = ">=1.0.6", allow-prereleases = true}
|
53
|
+
perceval = {version = ">=1.0.6", allow-prereleases = true}
|
54
54
|
|
55
55
|
[tool.poetry.dev-dependencies]
|
56
56
|
|
File without changes
|
File without changes
|
File without changes
|