Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
python-poetry
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
python-poetry
Commits
3222fe3c
Commit
3222fe3c
authored
Jul 24, 2020
by
Sébastien Eustace
Committed by
Arun Babu Neelicattu
Jul 24, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Increment lock file version
parent
80581105
Hide whitespace changes
Inline
Side-by-side
Showing
29 changed files
with
40 additions
and
37 deletions
+40
-37
poetry/packages/locker.py
+1
-1
tests/installation/fixtures/extras-with-dependencies.test
+1
-1
tests/installation/fixtures/extras.test
+1
-1
tests/installation/fixtures/install-no-dev.test
+1
-1
tests/installation/fixtures/no-dependencies.test
+1
-1
tests/installation/fixtures/remove.test
+1
-1
tests/installation/fixtures/update-with-lock.test
+1
-1
tests/installation/fixtures/update-with-locked-extras.test
+1
-1
tests/installation/fixtures/with-category-change.test
+1
-1
tests/installation/fixtures/with-conditional-dependency.test
+1
-1
tests/installation/fixtures/with-dependencies-extras.test
+1
-1
tests/installation/fixtures/with-dependencies.test
+1
-1
tests/installation/fixtures/with-directory-dependency-poetry-transitive.test
+1
-1
tests/installation/fixtures/with-directory-dependency-poetry.test
+1
-1
tests/installation/fixtures/with-directory-dependency-setuptools.test
+1
-1
tests/installation/fixtures/with-duplicate-dependencies-update.test
+1
-1
tests/installation/fixtures/with-duplicate-dependencies.test
+1
-1
tests/installation/fixtures/with-file-dependency-transitive.test
+1
-1
tests/installation/fixtures/with-file-dependency.test
+1
-1
tests/installation/fixtures/with-multiple-updates.test
+1
-1
tests/installation/fixtures/with-optional-dependencies.test
+1
-1
tests/installation/fixtures/with-platform-dependencies.test
+1
-1
tests/installation/fixtures/with-prereleases.test
+1
-1
tests/installation/fixtures/with-pypi-repository.test
+1
-1
tests/installation/fixtures/with-python-versions.test
+1
-1
tests/installation/fixtures/with-sub-dependencies.test
+1
-1
tests/installation/fixtures/with-url-dependency.test
+1
-1
tests/installation/fixtures/with-wheel-dependency-no-requires-dist.test
+1
-1
tests/packages/test_locker.py
+12
-9
No files found.
poetry/packages/locker.py
View file @
3222fe3c
...
@@ -27,7 +27,7 @@ logger = logging.getLogger(__name__)
...
@@ -27,7 +27,7 @@ logger = logging.getLogger(__name__)
class
Locker
(
object
):
class
Locker
(
object
):
_VERSION
=
"1.
0
"
_VERSION
=
"1.
1
"
_relevant_keys
=
[
"dependencies"
,
"dev-dependencies"
,
"source"
,
"extras"
]
_relevant_keys
=
[
"dependencies"
,
"dev-dependencies"
,
"source"
,
"extras"
]
...
...
tests/installation/fixtures/extras-with-dependencies.test
View file @
3222fe3c
...
@@ -38,7 +38,7 @@ foo = ["C"]
...
@@ -38,7 +38,7 @@ foo = ["C"]
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/extras.test
View file @
3222fe3c
...
@@ -35,7 +35,7 @@ foo = ["D"]
...
@@ -35,7 +35,7 @@ foo = ["D"]
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/install-no-dev.test
View file @
3222fe3c
...
@@ -24,7 +24,7 @@ python-versions = "*"
...
@@ -24,7 +24,7 @@ python-versions = "*"
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/no-dependencies.test
View file @
3222fe3c
...
@@ -2,7 +2,7 @@ package = []
...
@@ -2,7 +2,7 @@ package = []
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
tests/installation/fixtures/remove.test
View file @
3222fe3c
...
@@ -8,7 +8,7 @@ python-versions = "*"
...
@@ -8,7 +8,7 @@ python-versions = "*"
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/update-with-lock.test
View file @
3222fe3c
...
@@ -8,7 +8,7 @@ python-versions = "*"
...
@@ -8,7 +8,7 @@ python-versions = "*"
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/update-with-locked-extras.test
View file @
3222fe3c
...
@@ -39,7 +39,7 @@ python-versions = "*"
...
@@ -39,7 +39,7 @@ python-versions = "*"
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-category-change.test
View file @
3222fe3c
...
@@ -19,7 +19,7 @@ A = "^1.0"
...
@@ -19,7 +19,7 @@ A = "^1.0"
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-conditional-dependency.test
View file @
3222fe3c
...
@@ -22,7 +22,7 @@ python = ">=3.6,<4.0"
...
@@ -22,7 +22,7 @@ python = ">=3.6,<4.0"
[
metadata
]
[
metadata
]
python
-
versions
=
"~2.7 || ^3.4"
python
-
versions
=
"~2.7 || ^3.4"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-dependencies-extras.test
View file @
3222fe3c
...
@@ -30,7 +30,7 @@ python-versions = "*"
...
@@ -30,7 +30,7 @@ python-versions = "*"
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-dependencies.test
View file @
3222fe3c
...
@@ -16,7 +16,7 @@ python-versions = "*"
...
@@ -16,7 +16,7 @@ python-versions = "*"
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-directory-dependency-poetry-transitive.test
View file @
3222fe3c
...
@@ -96,7 +96,7 @@ url = "project_with_transitive_file_dependencies"
...
@@ -96,7 +96,7 @@ url = "project_with_transitive_file_dependencies"
[
metadata
]
[
metadata
]
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
python
-
versions
=
"*"
python
-
versions
=
"*"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-directory-dependency-poetry.test
View file @
3222fe3c
...
@@ -29,7 +29,7 @@ url = "tests/fixtures/project_with_extras"
...
@@ -29,7 +29,7 @@ url = "tests/fixtures/project_with_extras"
[
metadata
]
[
metadata
]
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
python
-
versions
=
"*"
python
-
versions
=
"*"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-directory-dependency-setuptools.test
View file @
3222fe3c
...
@@ -34,7 +34,7 @@ python-versions = "*"
...
@@ -34,7 +34,7 @@ python-versions = "*"
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-duplicate-dependencies-update.test
View file @
3222fe3c
...
@@ -30,7 +30,7 @@ python-versions = "*"
...
@@ -30,7 +30,7 @@ python-versions = "*"
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-duplicate-dependencies.test
View file @
3222fe3c
...
@@ -52,7 +52,7 @@ python-versions = "*"
...
@@ -52,7 +52,7 @@ python-versions = "*"
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-file-dependency-transitive.test
View file @
3222fe3c
...
@@ -60,7 +60,7 @@ url = "project_with_transitive_file_dependencies"
...
@@ -60,7 +60,7 @@ url = "project_with_transitive_file_dependencies"
[
metadata
]
[
metadata
]
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
python
-
versions
=
"*"
python
-
versions
=
"*"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-file-dependency.test
View file @
3222fe3c
...
@@ -28,7 +28,7 @@ python-versions = "*"
...
@@ -28,7 +28,7 @@ python-versions = "*"
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-multiple-updates.test
View file @
3222fe3c
...
@@ -39,7 +39,7 @@ python-versions = "*"
...
@@ -39,7 +39,7 @@ python-versions = "*"
[
metadata
]
[
metadata
]
python
-
versions
=
"~2.7 || ^3.4"
python
-
versions
=
"~2.7 || ^3.4"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-optional-dependencies.test
View file @
3222fe3c
...
@@ -30,7 +30,7 @@ foo = ["A"]
...
@@ -30,7 +30,7 @@ foo = ["A"]
[
metadata
]
[
metadata
]
python
-
versions
=
"~2.7 || ^3.4"
python
-
versions
=
"~2.7 || ^3.4"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-platform-dependencies.test
View file @
3222fe3c
...
@@ -38,7 +38,7 @@ foo = ["A"]
...
@@ -38,7 +38,7 @@ foo = ["A"]
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-prereleases.test
View file @
3222fe3c
...
@@ -16,7 +16,7 @@ python-versions = "*"
...
@@ -16,7 +16,7 @@ python-versions = "*"
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-pypi-repository.test
View file @
3222fe3c
...
@@ -81,7 +81,7 @@ python-versions = "*"
...
@@ -81,7 +81,7 @@ python-versions = "*"
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-python-versions.test
View file @
3222fe3c
...
@@ -24,7 +24,7 @@ python-versions = "~2.7 || ^3.3"
...
@@ -24,7 +24,7 @@ python-versions = "~2.7 || ^3.3"
[
metadata
]
[
metadata
]
python
-
versions
=
"~2.7 || ^3.4"
python
-
versions
=
"~2.7 || ^3.4"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-sub-dependencies.test
View file @
3222fe3c
...
@@ -38,7 +38,7 @@ python-versions = "*"
...
@@ -38,7 +38,7 @@ python-versions = "*"
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-url-dependency.test
View file @
3222fe3c
...
@@ -28,7 +28,7 @@ python-versions = "*"
...
@@ -28,7 +28,7 @@ python-versions = "*"
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/installation/fixtures/with-wheel-dependency-no-requires-dist.test
View file @
3222fe3c
...
@@ -13,7 +13,7 @@ url = "tests/fixtures/wheel_with_no_requires_dist/demo-0.1.0-py2.py3-none-any.wh
...
@@ -13,7 +13,7 @@ url = "tests/fixtures/wheel_with_no_requires_dist/demo-0.1.0-py2.py3-none-any.wh
[
metadata
]
[
metadata
]
python
-
versions
=
"*"
python
-
versions
=
"*"
lock
-
version
=
"1.
0
"
lock
-
version
=
"1.
1
"
content
-
hash
=
"123456789"
content
-
hash
=
"123456789"
[
metadata
.
files
]
[
metadata
.
files
]
...
...
tests/packages/test_locker.py
View file @
3222fe3c
...
@@ -5,6 +5,7 @@ import pytest
...
@@ -5,6 +5,7 @@ import pytest
import
tomlkit
import
tomlkit
from
poetry.core.packages.project_package
import
ProjectPackage
from
poetry.core.packages.project_package
import
ProjectPackage
from
poetry.core.semver.version
import
Version
from
poetry.packages.locker
import
Locker
from
poetry.packages.locker
import
Locker
from
..helpers
import
get_dependency
from
..helpers
import
get_dependency
...
@@ -57,7 +58,7 @@ version = "1.2"
...
@@ -57,7 +58,7 @@ version = "1.2"
[metadata]
[metadata]
content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8"
content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8"
lock-version = "1.
0
"
lock-version = "1.
1
"
python-versions = "*"
python-versions = "*"
[metadata.files]
[metadata.files]
...
@@ -95,7 +96,7 @@ redis = ["redis (>=2.10.5)"]
...
@@ -95,7 +96,7 @@ redis = ["redis (>=2.10.5)"]
[metadata]
[metadata]
content-hash = "c3d07fca33fba542ef2b2a4d75bf5b48d892d21a830e2ad9c952ba5123a52f77"
content-hash = "c3d07fca33fba542ef2b2a4d75bf5b48d892d21a830e2ad9c952ba5123a52f77"
lock-version = "1.
0
"
lock-version = "1.
1
"
python-versions = "~2.7 || ^3.4"
python-versions = "~2.7 || ^3.4"
[metadata.files]
[metadata.files]
...
@@ -135,7 +136,7 @@ version = "1.0.0"
...
@@ -135,7 +136,7 @@ version = "1.0.0"
[metadata]
[metadata]
content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8"
content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8"
lock-version = "1.
0
"
lock-version = "1.
1
"
python-versions = "*"
python-versions = "*"
[metadata.files]
[metadata.files]
...
@@ -175,7 +176,7 @@ foo = ["B (>=1.0.0)"]
...
@@ -175,7 +176,7 @@ foo = ["B (>=1.0.0)"]
[metadata]
[metadata]
content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8"
content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8"
lock-version = "1.
0
"
lock-version = "1.
1
"
python-versions = "*"
python-versions = "*"
[metadata.files]
[metadata.files]
...
@@ -205,7 +206,7 @@ foo = ["bar"]
...
@@ -205,7 +206,7 @@ foo = ["bar"]
[metadata]
[metadata]
content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8"
content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8"
lock-version = "1.
0
"
lock-version = "1.
1
"
python-versions = "*"
python-versions = "*"
[metadata.files]
[metadata.files]
...
@@ -245,7 +246,7 @@ url = "https://foo.bar"
...
@@ -245,7 +246,7 @@ url = "https://foo.bar"
[metadata]
[metadata]
content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8"
content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8"
lock-version = "1.
0
"
lock-version = "1.
1
"
python-versions = "*"
python-versions = "*"
[metadata.files]
[metadata.files]
...
@@ -261,11 +262,13 @@ def test_locker_should_emit_warnings_if_lock_version_is_newer_but_allowed(
...
@@ -261,11 +262,13 @@ def test_locker_should_emit_warnings_if_lock_version_is_newer_but_allowed(
content
=
"""
\
content
=
"""
\
[metadata]
[metadata]
content-hash = "c3d07fca33fba542ef2b2a4d75bf5b48d892d21a830e2ad9c952ba5123a52f77"
content-hash = "c3d07fca33fba542ef2b2a4d75bf5b48d892d21a830e2ad9c952ba5123a52f77"
lock-version = "
1.1
"
lock-version = "
{version}
"
python-versions = "~2.7 || ^3.4"
python-versions = "~2.7 || ^3.4"
[metadata.files]
[metadata.files]
"""
"""
.
format
(
version
=
"."
.
join
(
Version
.
parse
(
Locker
.
_VERSION
)
.
next_minor
.
text
.
split
(
"."
)[:
2
])
)
caplog
.
set_level
(
logging
.
WARNING
,
logger
=
"poetry.packages.locker"
)
caplog
.
set_level
(
logging
.
WARNING
,
logger
=
"poetry.packages.locker"
)
locker
.
lock
.
write
(
tomlkit
.
parse
(
content
))
locker
.
lock
.
write
(
tomlkit
.
parse
(
content
))
...
@@ -326,7 +329,7 @@ B = {version = "^1.0.0", extras = ["a", "b", "c"], optional = true}
...
@@ -326,7 +329,7 @@ B = {version = "^1.0.0", extras = ["a", "b", "c"], optional = true}
[metadata]
[metadata]
content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8"
content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8"
lock-version = "1.
0
"
lock-version = "1.
1
"
python-versions = "*"
python-versions = "*"
[metadata.files]
[metadata.files]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment