Skip to content
Snippets Groups Projects
Commit afb3cebb authored by Yannick DAYER's avatar Yannick DAYER
Browse files

Merge branch '105_packages_version_number' into 'master'

Pinned versions packages interpreted as float numbers

Closes #105

See merge request !310
parents 740a6ad2 288528f6
No related branches found
No related tags found
1 merge request!310Pinned versions packages interpreted as float numbers
Pipeline #63854 passed
......@@ -355,124 +355,124 @@ package_names_map:
click:
- 8.1.3
- "8.1.3"
click_plugins:
- 1.1.1
- "1.1.1"
cmake:
- 3.23.2
- "3.23.2"
coverage:
- 6.4.1
- "6.4.1"
dask:
- 2022.6.1
- "2022.6.1"
dask_jobqueue:
- 0.7.3
- "0.7.3"
dask_ml:
- 2022.5.27
- "2022.5.27"
ddt:
- 1.4.1
- "1.4.1"
distributed:
- 2022.6.1
- "2022.6.1"
docker_py:
- 5.0.3
- "5.0.3"
docopt:
- 0.6.2
- "0.6.2"
flaky:
- 3.7.0
- "3.7.0"
font_ttf_dejavu_sans_mono:
- 2.37
- "2.37"
freetype:
- 2.10.4
- "2.10.4"
graphviz:
- 4.0.0
- "4.0.0"
h5py:
- 3.6.0
- "3.6.0"
imageio:
- 2.19.3
- "2.19.3"
imageio_ffmpeg:
- 0.4.7
- "0.4.7"
jinja2:
- 3.1.2
- "3.1.2"
make:
- 4.3
- "4.3"
matplotlib:
- 3.5.2
- "3.5.2"
mne_base:
- 1.1.0
- "1.1.0"
ncurses:
- 6.3
- "6.3"
nose:
- 1.3.7
- "1.3.7"
numba:
- 0.55.2
- "0.55.2"
numpy:
- 1.22.4
- "1.22.4"
opencv:
- 4.5.5
- "4.5.5"
pandas:
- 1.4.3
- "1.4.3"
pillow:
- 9.1.1
- "9.1.1"
pip:
- 22.1.2
- "22.1.2"
pkg_config:
- 0.29.2
- "0.29.2"
psutil:
- 5.9.1
- "5.9.1"
pybind11:
- 2.9.2
- "2.9.2"
pysoundfile:
- 0.10.3
- "0.10.3"
pytest:
- 7.1.2
- "7.1.2"
pytest_cov:
- 3.0.0
- "3.0.0"
python_graphviz:
- 0.20
- "0.20"
pytorch:
- 1.11.0 cuda* # [linux]
- 1.11.0 # [osx]
- "1.11.0 cuda*" # [linux]
- "1.11.0" # [osx]
pytorch_lightning:
- 1.6.4
- "1.6.4"
pyyaml:
- 6.0
- "6.0"
pyzmq:
- 23.2.0
- "23.2.0"
requests:
- 2.28.0
- "2.28.0"
schema:
- 0.7.5
- "0.7.5"
scikit_image:
- 0.19.3
- "0.19.3"
scikit_learn:
- 1.1.1
- "1.1.1"
scipy:
- 1.8.1
- "1.8.1"
setuptools:
- 59.5.0
- "59.5.0"
simplejson:
- 3.17.6
- "3.17.6"
six:
- 1.16.0
- "1.16.0"
sphinx:
- 5.0.2
- "5.0.2"
sphinx_rtd_theme:
- 1.0.0
- "1.0.0"
sphinxcontrib_programoutput:
- 0.16
- "0.16"
sqlalchemy:
- 1.4.39
- "1.4.39"
tabulate:
- 0.8.10
- "0.8.10"
tensorflow:
- 2.8.1 cuda* # [linux]
- 2.8.1 # [osx]
- "2.8.1 cuda*" # [linux]
- "2.8.1" # [osx]
termcolor:
- 1.1.0
- "1.1.0"
torchvision:
- 0.12.0
- "0.12.0"
tqdm:
- 4.64.0
- "4.64.0"
xarray:
- 2022.3.0
- "2022.3.0"
# AUTOMATIC PARSING END
......@@ -73,7 +73,7 @@ def update_pins(manual_pins, python):
idx1 = content.find(START)
idx2 = content.find("# AUTOMATIC PARSING END")
pins = "\n".join(
f"{reversed_package_names_map.get(name, name)}:\n - {version}"
f'{reversed_package_names_map.get(name, name)}:\n - "{version}"'
for name, version in resolved_packages
if name in packages
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment