-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'python-3.9' of 'https://github.com/jjmerchante/grimoire…
…lab-elk' Drop Python 3.8 support
- Loading branch information
Showing
8 changed files
with
325 additions
and
364 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ version = "1.1.5" | |
description = "GrimoireELK processes and stores software development data to ElasticSearch" | ||
readme = "README.md" | ||
authors = [ | ||
"Bitergia <[email protected]>" | ||
"GrimoireLab Developers" | ||
] | ||
repository = "https://github.com/chaoss/grimoirelab-elk" | ||
keywords = ["development repositories analytics"] | ||
|
@@ -15,7 +15,6 @@ classifiers=[ | |
'Topic :: Software Development', | ||
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.8' | ||
] | ||
|
||
packages = [ | ||
|
@@ -38,14 +37,14 @@ p2o = 'utils.p2o:main' | |
gelk_mapping = 'utils.gelk_mapping:main' | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
python = "^3.9" | ||
|
||
elasticsearch = "6.3.1" | ||
elasticsearch-dsl = "6.3.1" | ||
requests = "^2.7.0" | ||
urllib3 = "^1.26" | ||
urllib3 = ">=1.26,<3" | ||
geopy = "^2.0.0" | ||
pandas = "^1.3.5" | ||
pandas = ">=0.22,<3" | ||
statsmodels = ">=0.9.0" | ||
sortinghat = { version = ">=0.7.20", allow-prereleases = true} | ||
grimoirelab-toolkit = { version = ">=0.3", allow-prereleases = true} | ||
|
@@ -56,13 +55,11 @@ perceval-mozilla = { version = ">=0.3", allow-prereleases = true} | |
perceval-opnfv = { version = ">=0.2", allow-prereleases = true} | ||
perceval-puppet = { version = ">=0.2", allow-prereleases = true} | ||
perceval-weblate = { version = ">=0.2", allow-prereleases = true} | ||
numpy = "^1.21.0" | ||
scipy = ">=1.7.0" | ||
|
||
[tool.poetry.dev-dependencies] | ||
httpretty = "^1.1.4" | ||
flake8 = "^4.0.1" | ||
coverage = "^5.5" | ||
flake8 = "^7.1.1" | ||
coverage = "^7.2.3" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title: Python minimum version updated | ||
category: dependency | ||
author: Jose Javier Merchante <[email protected]> | ||
issue: null | ||
notes: > | ||
Python 3.8 will reach its end of life in October 2024. | ||
Python 3.9 is the minimum version required by the project. |