This commit is contained in:
Alessio Placitelli 2022-02-08 11:12:32 +01:00
Родитель a3e6f8525a
Коммит 90c3573902
6 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -138,7 +138,7 @@ python-docs: build-python ## Build the Python documentation
.PHONY: docs rust-docs swift-docs
metrics-docs: python-setup ## Build the internal metrics documentation
$(GLEAN_PYENV)/bin/pip install glean_parser==4.4.0
$(GLEAN_PYENV)/bin/pip install glean_parser==5.0.1
$(GLEAN_PYENV)/bin/glean_parser translate --allow-reserved \
-f markdown \
-o ./docs/user/user/collected-metrics \

Просмотреть файл

@ -18,7 +18,7 @@ include = [
]
[package.metadata.glean]
glean-parser = "4.4.0"
glean-parser = "5.0.1"
[badges]
circle-ci = { repository = "mozilla/glean", branch = "main" }

Просмотреть файл

@ -25,7 +25,7 @@
set -e
GLEAN_PARSER_VERSION=4.4.0
GLEAN_PARSER_VERSION=5.0.1
# CMDNAME is used in the usage text below.
# shellcheck disable=SC2034

Просмотреть файл

@ -30,7 +30,7 @@ __author__ = "The Glean Team"
__email__ = "glean-team@mozilla.com"
GLEAN_PARSER_VERSION = "4.4.0"
GLEAN_PARSER_VERSION = "5.0.1"
if glean_parser.__version__ != GLEAN_PARSER_VERSION:

Просмотреть файл

@ -60,7 +60,7 @@ version = "43.0.2"
requirements = [
"cffi>=1.13.0",
"glean_parser==4.4.0",
"glean_parser==5.0.1",
"iso8601>=0.1.10; python_version<='3.6'",
]

Просмотреть файл

@ -41,7 +41,7 @@ class GleanMetricsYamlTransform extends ArtifactTransform {
@SuppressWarnings("GrPackage")
class GleanPlugin implements Plugin<Project> {
// The version of glean_parser to install from PyPI.
private String GLEAN_PARSER_VERSION = "4.4.0"
private String GLEAN_PARSER_VERSION = "5.0.1"
// The version of Miniconda is explicitly specified.
// Miniconda3-4.5.12 is known to not work on Windows.
private String MINICONDA_VERSION = "4.5.11"