Hello community,
here is the log from the commit of package python-docker-compose for
openSUSE:Factory checked in at 2019-12-13 12:04:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-docker-compose (Old)
and /work/SRC/openSUSE:Factory/.python-docker-compose.new.4691 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-docker-compose"
Fri Dec 13 12:04:21 2019 rev:5 rq:756731 version:1.25.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-docker-compose/python-docker-compose.changes
2019-12-11 12:15:14.152509661 +0100
+++
/work/SRC/openSUSE:Factory/.python-docker-compose.new.4691/python-docker-compose.changes
2019-12-13 12:05:11.261383731 +0100
@@ -1,0 +2,6 @@
+Fri Dec 13 08:41:09 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Add patch no-restrict-upper.patch to add back removal of upper
+ version checks and constraints
+
+-------------------------------------------------------------------
New:
----
no-restrict-upper.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-docker-compose.spec ++++++
--- /var/tmp/diff_new_pack.77oTIK/_old 2019-12-13 12:05:11.821383521 +0100
+++ /var/tmp/diff_new_pack.77oTIK/_new 2019-12-13 12:05:11.825383518 +0100
@@ -26,6 +26,7 @@
Group: System/Management
URL: https://pypi.python.org/pypi/docker-compose
Source0:
https://files.pythonhosted.org/packages/source/d/docker-compose/docker-compose-%{version}.tar.gz
+Patch0: no-restrict-upper.patch
BuildRequires: %{python_module PyYAML >= 3.10}
BuildRequires: %{python_module cached-property >= 1.2.0}
BuildRequires: %{python_module docker >= 3.7.0}
@@ -89,6 +90,7 @@
%prep
%setup -q -n docker-compose-%{version}
+%patch0 -p1
%build
%python_build
++++++ no-restrict-upper.patch ++++++
Index: docker-compose-1.25.0/setup.py
===================================================================
--- docker-compose-1.25.0.orig/setup.py
+++ docker-compose-1.25.0/setup.py
@@ -30,16 +30,16 @@ def find_version(*file_paths):
install_requires = [
- 'cached-property >= 1.2.0, < 2',
- 'docopt >= 0.6.1, < 1',
- 'PyYAML >= 3.10, < 5',
- 'requests >= 2.20.0, < 3',
- 'texttable >= 0.9.0, < 2',
- 'websocket-client >= 0.32.0, < 1',
- 'docker[ssh] >= 3.7.0, < 5',
- 'dockerpty >= 0.4.1, < 1',
- 'six >= 1.3.0, < 2',
- 'jsonschema >= 2.5.1, < 4',
+ 'cached-property >= 1.2.0',
+ 'docopt >= 0.6.1',
+ 'PyYAML >= 3.10',
+ 'requests >= 2.20.0',
+ 'texttable >= 0.9.0',
+ 'websocket-client >= 0.32.0',
+ 'docker[ssh] >= 3.7.0',
+ 'dockerpty >= 0.4.1',
+ 'six >= 1.3.0',
+ 'jsonschema >= 2.5.1',
]
@@ -49,16 +49,16 @@ tests_require = [
if sys.version_info[:2] < (3, 4):
- tests_require.append('mock >= 1.0.1, < 4')
+ tests_require.append('mock >= 1.0.1')
extras_require = {
- ':python_version < "3.2"': ['subprocess32 >= 3.5.4, < 4'],
- ':python_version < "3.4"': ['enum34 >= 1.0.4, < 2'],
- ':python_version < "3.5"': ['backports.ssl_match_hostname >= 3.5, < 4'],
- ':python_version < "3.3"': ['backports.shutil_get_terminal_size == 1.0.0',
- 'ipaddress >= 1.0.16, < 2'],
- ':sys_platform == "win32"': ['colorama >= 0.4, < 1'],
- 'socks': ['PySocks >= 1.5.6, != 1.5.7, < 2'],
+ ':python_version < "3.2"': ['subprocess32 >= 3.5.4'],
+ ':python_version < "3.4"': ['enum34 >= 1.0.4'],
+ ':python_version < "3.5"': ['backports.ssl_match_hostname >= 3.5'],
+ ':python_version < "3.3"': ['backports.shutil_get_terminal_size >= 1.0.0',
+ 'ipaddress >= 1.0.16'],
+ ':sys_platform == "win32"': ['colorama >= 0.4'],
+ 'socks': ['PySocks >= 1.5.6, != 1.5.7'],
}