Hello community,
here is the log from the commit of package python-docker-compose for
openSUSE:Factory checked in at 2020-04-21 13:05:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-docker-compose (Old)
and /work/SRC/openSUSE:Factory/.python-docker-compose.new.2738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-docker-compose"
Tue Apr 21 13:05:16 2020 rev:8 rq:795999 version:1.25.4
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-docker-compose/python-docker-compose.changes
2020-01-10 17:51:37.166129400 +0100
+++
/work/SRC/openSUSE:Factory/.python-docker-compose.new.2738/python-docker-compose.changes
2020-04-21 13:05:17.496168996 +0200
@@ -1,0 +2,19 @@
+Tue Apr 21 08:59:09 UTC 2020 - Tomáš Chvátal <[email protected]>
+
+- Do not skip temporarily disabled tests as they work now with new
+ releases
+
+-------------------------------------------------------------------
+Tue Apr 21 08:53:57 UTC 2020 - Tomáš Chvátal <[email protected]>
+
+- Don't pull dotenv package which does not exist on runtime
+
+-------------------------------------------------------------------
+Thu Apr 2 12:49:50 UTC 2020 - Marketa Calabkova <[email protected]>
+
+- Update to 1.25.4
+ * Allow compatibility option with COMPOSE_COMPATIBILITY environment variable
+ * Fix v3.8 schema support for binaries
+ * few dependendy version bumps
+
+-------------------------------------------------------------------
Old:
----
docker-compose-1.25.1.tar.gz
New:
----
docker-compose-1.25.4.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-docker-compose.spec ++++++
--- /var/tmp/diff_new_pack.bM9FmS/_old 2020-04-21 13:05:18.212170424 +0200
+++ /var/tmp/diff_new_pack.bM9FmS/_new 2020-04-21 13:05:18.212170424 +0200
@@ -17,14 +17,9 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
-%if 0%{suse_version} > 1500
-%bcond_with python2
-%define skip_python2 1
-%else
%bcond_without python2
-%endif
Name: python-docker-compose
-Version: 1.25.1
+Version: 1.25.4
Release: 0
Summary: Tool to define and run complex applications using Docker
License: Apache-2.0
@@ -34,6 +29,7 @@
Patch0: no-restrict-upper.patch
BuildRequires: %{python_module PyYAML >= 3.10}
BuildRequires: %{python_module cached-property >= 1.2.0}
+BuildRequires: %{python_module ddt >= 1.2.2}
BuildRequires: %{python_module docker >= 3.7.0}
BuildRequires: %{python_module dockerpty >= 0.4.1}
BuildRequires: %{python_module docopt >= 0.6.1}
@@ -41,7 +37,7 @@
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module six >= 1.3.0}
-BuildRequires: %{python_module texttable >= 0.9.0}
+BuildRequires: %{python_module texttable >= 0.9.1}
BuildRequires: %{python_module websocket-client >= 0.32.0}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
@@ -59,7 +55,6 @@
Requires: python-requests >= 2.20.0
Requires: python-six >= 1.3.0
Requires: python-texttable >= 0.9.1
-Requires: python-urllib3 >= 1.21.1
Requires: python-websocket-client >= 0.32.0
BuildArch: noarch
# This is py3 only as we have the binary just there
@@ -107,9 +102,6 @@
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
-# the test requires pytes3 for now (uses ensuretemp)
-rm tests/unit/config/config_test.py
-rm tests/unit/config/environment_test.py
%pytest tests/unit
%files %{python_files}
++++++ docker-compose-1.25.1.tar.gz -> docker-compose-1.25.4.tar.gz ++++++
++++ 2321 lines of diff (skipped)
++++++ no-restrict-upper.patch ++++++
--- /var/tmp/diff_new_pack.bM9FmS/_old 2020-04-21 13:05:18.416170831 +0200
+++ /var/tmp/diff_new_pack.bM9FmS/_new 2020-04-21 13:05:18.416170831 +0200
@@ -1,14 +1,14 @@
-Index: docker-compose-1.25.0/setup.py
+Index: docker-compose-1.25.4/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):
+--- docker-compose-1.25.4.orig/setup.py
++++ docker-compose-1.25.4/setup.py
+@@ -30,35 +30,35 @@ def find_version(*file_paths):
install_requires = [
- 'cached-property >= 1.2.0, < 2',
- 'docopt >= 0.6.1, < 1',
-- 'PyYAML >= 3.10, < 5',
+- 'PyYAML >= 3.10, < 6',
- 'requests >= 2.20.0, < 3',
- 'texttable >= 0.9.0, < 2',
- 'websocket-client >= 0.32.0, < 1',
@@ -29,7 +29,10 @@
]
-@@ -49,16 +49,16 @@ tests_require = [
+ tests_require = [
+- 'pytest < 6',
++ 'pytest',
+ ]
if sys.version_info[:2] < (3, 4):