File tree Expand file tree Collapse file tree 4 files changed +20
-2
lines changed Expand file tree Collapse file tree 4 files changed +20
-2
lines changed Original file line number Diff line number Diff line change
1
+ # Compatibility module. See https://github.com/docker/docker-py/issues/1196
2
+
3
+ import warnings
4
+
5
+ from ..types import Ulimit , LogConfig # flake8: noqa
6
+
7
+ warnings .warn ('docker.utils.types is now docker.types' , ImportWarning )
Original file line number Diff line number Diff line change 1
- version = "1.10.0 "
1
+ version = "1.10.1 "
2
2
version_info = tuple ([int (d ) for d in version .split ("-" )[0 ].split ("." )])
Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
3
4
+ 1.10.1
5
+ ------
6
+
7
+ [ List of PRs / issues for this release] ( https://github.com/docker/docker-py/issues?q=milestone%3A1.10.0+is%3Aclosed )
8
+
9
+ ### Bugfixes
10
+
11
+ * The docker.utils.types module was removed in favor of docker.types, but some
12
+ applications imported it explicitly. It has been re-added with an import
13
+ warning advising to use the new module path.
14
+
4
15
1.10.0
5
16
------
6
17
Original file line number Diff line number Diff line change 2
2
universal = 1
3
3
4
4
[metadata]
5
- description_file = README.md
5
+ description_file = README.rst
You can’t perform that action at this time.
0 commit comments