Skip to content

Commit

Permalink
Update ckanext-contact to remove mismatch with requests dependancy
Browse files Browse the repository at this point in the history
  • Loading branch information
Zharktas committed Dec 8, 2023
1 parent 670f0d9 commit a443a72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckanext/ckanext-contact
Submodule ckanext-contact updated 49 files
+8 −2 .github/SUPPORT.md
+0 −58 .github/nhm-logo.svg
+31 −0 .github/workflows/bump.yml
+21 −0 .github/workflows/main.yml
+35 −0 .github/workflows/pypi-publish.yml
+27 −0 .github/workflows/sync.yml
+7 −15 .gitignore
+34 −0 .pre-commit-config.yaml
+8 −0 .readthedocs.yaml
+0 −16 .travis.yml
+133 −8 CHANGELOG.md
+20 −0 CITATION.cff
+132 −0 CODE_OF_CONDUCT.md
+195 −0 CONTRIBUTING.md
+7 −7 LICENSE
+65 −54 README.md
+2 −0 ckanext/__init__.py
+2 −0 ckanext/contact/__init__.py
+3 −5 ckanext/contact/auth.py
+7 −5 ckanext/contact/interfaces.py
+5 −6 ckanext/contact/plugin.py
+7 −5 ckanext/contact/recaptcha.py
+61 −31 ckanext/contact/routes/_helpers.py
+14 −15 ckanext/contact/routes/contact.py
+37 −34 ckanext/contact/theme/assets/modules/form-contact.js
+163 −152 ckanext/contact/theme/assets/modules/modal-contact.js
+80 −74 ckanext/contact/theme/assets/scripts/recaptcha_helpers.js
+1 −1 ckanext/contact/theme/templates/ajax_snippets/contact_form.html
+4 −0 ckanext/contact/theme/templates/contact/snippets/form.html
+0 −2 dev_requirements.txt
+4 −3 docker-compose.yml
+7 −16 docker/Dockerfile
+0 −24 docker/entrypoint.sh
+51 −0 docs/_scripts/gen_api_pages.py
+ docs/assets/logo.png
+5 −0 docs/configuration.md
+7 −0 docs/index.md
+5 −0 docs/installation.md
+6 −0 docs/requirements.txt
+5 −0 docs/tests.md
+5 −0 docs/usage/index.md
+41 −0 mkdocs.yml
+79 −0 pyproject.toml
+0 −4 requirements.txt
+4 −39 setup.py
+2 −2 test.ini
+0 −0 tests/unit/__init__.py
+0 −0 tests/unit/test_auth.py
+34 −8 tests/unit/test_helpers.py

0 comments on commit a443a72

Please sign in to comment.