simplesitesearch 1.0.1__tar.gz → 1.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 (19) hide show
  1. {simplesitesearch-1.0.1/simplesitesearch.egg-info → simplesitesearch-1.0.2}/PKG-INFO +5 -2
  2. {simplesitesearch-1.0.1 → simplesitesearch-1.0.2}/README.md +4 -1
  3. {simplesitesearch-1.0.1 → simplesitesearch-1.0.2}/setup.cfg +3 -2
  4. {simplesitesearch-1.0.1 → simplesitesearch-1.0.2}/setup.py +2 -1
  5. {simplesitesearch-1.0.1 → simplesitesearch-1.0.2/simplesitesearch.egg-info}/PKG-INFO +5 -2
  6. {simplesitesearch-1.0.1 → simplesitesearch-1.0.2}/LICENSE +0 -0
  7. {simplesitesearch-1.0.1 → simplesitesearch-1.0.2}/MANIFEST.in +0 -0
  8. {simplesitesearch-1.0.1 → simplesitesearch-1.0.2}/pyproject.toml +0 -0
  9. {simplesitesearch-1.0.1 → simplesitesearch-1.0.2}/simplesitesearch/__init__.py +0 -0
  10. {simplesitesearch-1.0.1 → simplesitesearch-1.0.2}/simplesitesearch/cms_apps.py +0 -0
  11. {simplesitesearch-1.0.1 → simplesitesearch-1.0.2}/simplesitesearch/templates/simplesitesearch/pagination.html +0 -0
  12. {simplesitesearch-1.0.1 → simplesitesearch-1.0.2}/simplesitesearch/templates/simplesitesearch/search_results.html +0 -0
  13. {simplesitesearch-1.0.1 → simplesitesearch-1.0.2}/simplesitesearch/urls.py +0 -0
  14. {simplesitesearch-1.0.1 → simplesitesearch-1.0.2}/simplesitesearch/views.py +0 -0
  15. {simplesitesearch-1.0.1 → simplesitesearch-1.0.2}/simplesitesearch.egg-info/SOURCES.txt +0 -0
  16. {simplesitesearch-1.0.1 → simplesitesearch-1.0.2}/simplesitesearch.egg-info/dependency_links.txt +0 -0
  17. {simplesitesearch-1.0.1 → simplesitesearch-1.0.2}/simplesitesearch.egg-info/not-zip-safe +0 -0
  18. {simplesitesearch-1.0.1 → simplesitesearch-1.0.2}/simplesitesearch.egg-info/requires.txt +0 -0
  19. {simplesitesearch-1.0.1 → simplesitesearch-1.0.2}/simplesitesearch.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: simplesitesearch
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Reptile Simple Site Search django app
5
5
  Home-page: https://github.com/reptiletech/simplesitesearch
6
6
  Author: Reptile Tech
@@ -227,5 +227,8 @@ For support and questions, please open an issue on the [GitHub repository](https
227
227
  - Multi-language support
228
228
  - Basic search functionality
229
229
 
230
- ### 1.0.1
230
+ ### 1.0.2
231
231
  - Allow python version 3.6, 3.7
232
+
233
+ ### 1.0.2
234
+ - Allow Django version 2.2
@@ -182,5 +182,8 @@ For support and questions, please open an issue on the [GitHub repository](https
182
182
  - Multi-language support
183
183
  - Basic search functionality
184
184
 
185
- ### 1.0.1
185
+ ### 1.0.2
186
186
  - Allow python version 3.6, 3.7
187
+
188
+ ### 1.0.2
189
+ - Allow Django version 2.2
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = simplesitesearch
3
- version = 1.0.1
3
+ version = 1.0.2
4
4
  author = Reptile Tech
5
5
  author_email = flouis@reptile.tech
6
6
  description = Reptile Simple Site Search django app
@@ -23,6 +23,7 @@ classifiers =
23
23
  Programming Language :: Python :: 3.11
24
24
  Programming Language :: Python :: 3.12
25
25
  Framework :: Django
26
+ Framework :: Django :: 2.2
26
27
  Framework :: Django :: 3.2
27
28
  Framework :: Django :: 4.0
28
29
  Framework :: Django :: 4.1
@@ -41,7 +42,7 @@ project_urls =
41
42
  packages = find:
42
43
  python_requires = >=3.6
43
44
  install_requires =
44
- Django>=3.2
45
+ Django>=2.2
45
46
  django-cms>=3.2
46
47
  requests>=2.25.0
47
48
  include_package_data = True
@@ -8,7 +8,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
8
8
 
9
9
  setup(
10
10
  name="simplesitesearch",
11
- version="1.0.1",
11
+ version="1.0.2",
12
12
  author="Reptile Tech",
13
13
  author_email="flouis@reptile.tech",
14
14
  description="Reptile Simple Site Search django app",
@@ -30,6 +30,7 @@ setup(
30
30
  "Programming Language :: Python :: 3.11",
31
31
  "Programming Language :: Python :: 3.12",
32
32
  "Framework :: Django",
33
+ "Framework :: Django :: 2.2",
33
34
  "Framework :: Django :: 3.2",
34
35
  "Framework :: Django :: 4.0",
35
36
  "Framework :: Django :: 4.1",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: simplesitesearch
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Reptile Simple Site Search django app
5
5
  Home-page: https://github.com/reptiletech/simplesitesearch
6
6
  Author: Reptile Tech
@@ -227,5 +227,8 @@ For support and questions, please open an issue on the [GitHub repository](https
227
227
  - Multi-language support
228
228
  - Basic search functionality
229
229
 
230
- ### 1.0.1
230
+ ### 1.0.2
231
231
  - Allow python version 3.6, 3.7
232
+
233
+ ### 1.0.2
234
+ - Allow Django version 2.2