plone.theme 4.0.1__tar.gz → 4.0.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. {plone.theme-4.0.1 → plone_theme-4.0.3}/CHANGES.rst +19 -0
  2. {plone.theme-4.0.1/plone.theme.egg-info → plone_theme-4.0.3}/PKG-INFO +21 -2
  3. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone/theme/README.rst +1 -1
  4. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone/theme/tests/testBrowserLayerPrecedence.py +15 -8
  5. {plone.theme-4.0.1 → plone_theme-4.0.3/plone.theme.egg-info}/PKG-INFO +21 -2
  6. {plone.theme-4.0.1 → plone_theme-4.0.3}/setup.py +1 -1
  7. {plone.theme-4.0.1 → plone_theme-4.0.3}/CONTRIBUTING.rst +0 -0
  8. {plone.theme-4.0.1 → plone_theme-4.0.3}/MANIFEST.in +0 -0
  9. {plone.theme-4.0.1 → plone_theme-4.0.3}/README.rst +0 -0
  10. {plone.theme-4.0.1 → plone_theme-4.0.3}/docs/LICENSE.GPL +0 -0
  11. {plone.theme-4.0.1 → plone_theme-4.0.3}/docs/LICENSE.txt +0 -0
  12. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone/__init__.py +0 -0
  13. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone/theme/__init__.py +0 -0
  14. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone/theme/configure.zcml +0 -0
  15. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone/theme/interfaces.py +0 -0
  16. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone/theme/layer.py +0 -0
  17. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone/theme/testing.py +0 -0
  18. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone/theme/tests/__init__.py +0 -0
  19. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone/theme/tests/default.pt +0 -0
  20. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone/theme/tests/interfaces.py +0 -0
  21. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone/theme/tests/mytheme.pt +0 -0
  22. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone/theme/tests/test_doctest.py +0 -0
  23. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone/theme/tests/tests.zcml +0 -0
  24. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone.theme.egg-info/SOURCES.txt +0 -0
  25. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone.theme.egg-info/dependency_links.txt +0 -0
  26. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone.theme.egg-info/namespace_packages.txt +0 -0
  27. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone.theme.egg-info/not-zip-safe +0 -0
  28. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone.theme.egg-info/requires.txt +0 -0
  29. {plone.theme-4.0.1 → plone_theme-4.0.3}/plone.theme.egg-info/top_level.txt +0 -0
  30. {plone.theme-4.0.1 → plone_theme-4.0.3}/pyproject.toml +0 -0
  31. {plone.theme-4.0.1 → plone_theme-4.0.3}/setup.cfg +0 -0
@@ -8,6 +8,25 @@ Changelog
8
8
 
9
9
  .. towncrier release notes start
10
10
 
11
+ 4.0.3 (2025-01-23)
12
+ ------------------
13
+
14
+ Bug fixes:
15
+
16
+
17
+ - Fix DeprecationWarnings. [maurits] (#4090)
18
+
19
+
20
+ 4.0.2 (2024-11-30)
21
+ ------------------
22
+
23
+ Bug fixes:
24
+
25
+
26
+ - Fix removed `unittest.makeSuite` in python 3.13.
27
+ [petschki] (#27)
28
+
29
+
11
30
  4.0.1 (2023-10-07)
12
31
  ------------------
13
32
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plone.theme
3
- Version: 4.0.1
3
+ Version: 4.0.3
4
4
  Summary: Tools for managing themes in CMF and Plone sites
5
5
  Home-page: https://pypi.org/project/plone.theme
6
6
  Author: Plone Foundation
@@ -97,7 +97,7 @@ The other outputs "My Theme".
97
97
 
98
98
  Before we turn on the skin, we will get the default view.
99
99
 
100
- >>> from plone.testing.z2 import Browser
100
+ >>> from plone.testing.zope import Browser
101
101
  >>> browser = Browser(layer['app'])
102
102
 
103
103
  >>> browser.open(layer['portal'].absolute_url() + '/@@layer-test-view')
@@ -138,6 +138,25 @@ Changelog
138
138
 
139
139
  .. towncrier release notes start
140
140
 
141
+ 4.0.3 (2025-01-23)
142
+ ------------------
143
+
144
+ Bug fixes:
145
+
146
+
147
+ - Fix DeprecationWarnings. [maurits] (#4090)
148
+
149
+
150
+ 4.0.2 (2024-11-30)
151
+ ------------------
152
+
153
+ Bug fixes:
154
+
155
+
156
+ - Fix removed `unittest.makeSuite` in python 3.13.
157
+ [petschki] (#27)
158
+
159
+
141
160
  4.0.1 (2023-10-07)
142
161
  ------------------
143
162
 
@@ -61,7 +61,7 @@ The other outputs "My Theme".
61
61
 
62
62
  Before we turn on the skin, we will get the default view.
63
63
 
64
- >>> from plone.testing.z2 import Browser
64
+ >>> from plone.testing.zope import Browser
65
65
  >>> browser = Browser(layer['app'])
66
66
 
67
67
  >>> browser.open(layer['portal'].absolute_url() + '/@@layer-test-view')
@@ -101,11 +101,18 @@ class TestPrecedenceWithNoThemeLayer(LayerPrecedenceTestCase):
101
101
 
102
102
 
103
103
  def test_suite():
104
- from unittest import makeSuite
105
- from unittest import TestSuite
106
-
107
- suite = TestSuite()
108
- suite.addTest(makeSuite(TestPrecedenceWithAdditiveLayerExtendingInterface))
109
- suite.addTest(makeSuite(TestPrecedenceWithAdditiveLayerExtendingDefault))
110
- suite.addTest(makeSuite(TestPrecedenceWithNoThemeLayer))
111
- return suite
104
+ import unittest
105
+
106
+ return unittest.TestSuite(
107
+ (
108
+ unittest.defaultTestLoader.loadTestsFromTestCase(
109
+ TestPrecedenceWithAdditiveLayerExtendingInterface
110
+ ),
111
+ unittest.defaultTestLoader.loadTestsFromTestCase(
112
+ TestPrecedenceWithAdditiveLayerExtendingDefault
113
+ ),
114
+ unittest.defaultTestLoader.loadTestsFromTestCase(
115
+ TestPrecedenceWithNoThemeLayer
116
+ ),
117
+ )
118
+ )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plone.theme
3
- Version: 4.0.1
3
+ Version: 4.0.3
4
4
  Summary: Tools for managing themes in CMF and Plone sites
5
5
  Home-page: https://pypi.org/project/plone.theme
6
6
  Author: Plone Foundation
@@ -97,7 +97,7 @@ The other outputs "My Theme".
97
97
 
98
98
  Before we turn on the skin, we will get the default view.
99
99
 
100
- >>> from plone.testing.z2 import Browser
100
+ >>> from plone.testing.zope import Browser
101
101
  >>> browser = Browser(layer['app'])
102
102
 
103
103
  >>> browser.open(layer['portal'].absolute_url() + '/@@layer-test-view')
@@ -138,6 +138,25 @@ Changelog
138
138
 
139
139
  .. towncrier release notes start
140
140
 
141
+ 4.0.3 (2025-01-23)
142
+ ------------------
143
+
144
+ Bug fixes:
145
+
146
+
147
+ - Fix DeprecationWarnings. [maurits] (#4090)
148
+
149
+
150
+ 4.0.2 (2024-11-30)
151
+ ------------------
152
+
153
+ Bug fixes:
154
+
155
+
156
+ - Fix removed `unittest.makeSuite` in python 3.13.
157
+ [petschki] (#27)
158
+
159
+
141
160
  4.0.1 (2023-10-07)
142
161
  ------------------
143
162
 
@@ -3,7 +3,7 @@ from setuptools import find_packages
3
3
  from setuptools import setup
4
4
 
5
5
 
6
- version = "4.0.1"
6
+ version = "4.0.3"
7
7
 
8
8
  long_description = (
9
9
  f"{Path('README.rst').read_text()}\n"
File without changes
File without changes
File without changes
File without changes