plone.theme 4.0.1__tar.gz → 4.0.2__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.2}/CHANGES.rst +10 -0
  2. {plone.theme-4.0.1/plone.theme.egg-info → plone_theme-4.0.2}/PKG-INFO +11 -1
  3. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/tests/testBrowserLayerPrecedence.py +15 -8
  4. {plone.theme-4.0.1 → plone_theme-4.0.2/plone.theme.egg-info}/PKG-INFO +11 -1
  5. {plone.theme-4.0.1 → plone_theme-4.0.2}/setup.py +1 -1
  6. {plone.theme-4.0.1 → plone_theme-4.0.2}/CONTRIBUTING.rst +0 -0
  7. {plone.theme-4.0.1 → plone_theme-4.0.2}/MANIFEST.in +0 -0
  8. {plone.theme-4.0.1 → plone_theme-4.0.2}/README.rst +0 -0
  9. {plone.theme-4.0.1 → plone_theme-4.0.2}/docs/LICENSE.GPL +0 -0
  10. {plone.theme-4.0.1 → plone_theme-4.0.2}/docs/LICENSE.txt +0 -0
  11. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/__init__.py +0 -0
  12. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/README.rst +0 -0
  13. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/__init__.py +0 -0
  14. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/configure.zcml +0 -0
  15. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/interfaces.py +0 -0
  16. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/layer.py +0 -0
  17. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/testing.py +0 -0
  18. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/tests/__init__.py +0 -0
  19. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/tests/default.pt +0 -0
  20. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/tests/interfaces.py +0 -0
  21. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/tests/mytheme.pt +0 -0
  22. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/tests/test_doctest.py +0 -0
  23. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/tests/tests.zcml +0 -0
  24. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone.theme.egg-info/SOURCES.txt +0 -0
  25. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone.theme.egg-info/dependency_links.txt +0 -0
  26. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone.theme.egg-info/namespace_packages.txt +0 -0
  27. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone.theme.egg-info/not-zip-safe +0 -0
  28. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone.theme.egg-info/requires.txt +0 -0
  29. {plone.theme-4.0.1 → plone_theme-4.0.2}/plone.theme.egg-info/top_level.txt +0 -0
  30. {plone.theme-4.0.1 → plone_theme-4.0.2}/pyproject.toml +0 -0
  31. {plone.theme-4.0.1 → plone_theme-4.0.2}/setup.cfg +0 -0
@@ -8,6 +8,16 @@ Changelog
8
8
 
9
9
  .. towncrier release notes start
10
10
 
11
+ 4.0.2 (2024-11-30)
12
+ ------------------
13
+
14
+ Bug fixes:
15
+
16
+
17
+ - Fix removed `unittest.makeSuite` in python 3.13.
18
+ [petschki] (#27)
19
+
20
+
11
21
  4.0.1 (2023-10-07)
12
22
  ------------------
13
23
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plone.theme
3
- Version: 4.0.1
3
+ Version: 4.0.2
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
@@ -138,6 +138,16 @@ Changelog
138
138
 
139
139
  .. towncrier release notes start
140
140
 
141
+ 4.0.2 (2024-11-30)
142
+ ------------------
143
+
144
+ Bug fixes:
145
+
146
+
147
+ - Fix removed `unittest.makeSuite` in python 3.13.
148
+ [petschki] (#27)
149
+
150
+
141
151
  4.0.1 (2023-10-07)
142
152
  ------------------
143
153
 
@@ -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.2
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
@@ -138,6 +138,16 @@ Changelog
138
138
 
139
139
  .. towncrier release notes start
140
140
 
141
+ 4.0.2 (2024-11-30)
142
+ ------------------
143
+
144
+ Bug fixes:
145
+
146
+
147
+ - Fix removed `unittest.makeSuite` in python 3.13.
148
+ [petschki] (#27)
149
+
150
+
141
151
  4.0.1 (2023-10-07)
142
152
  ------------------
143
153
 
@@ -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.2"
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