djangobible 0.1.1__tar.gz → 0.2.1__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.
Potentially problematic release.
This version of djangobible might be problematic. Click here for more details.
- {djangobible-0.1.1 → djangobible-0.2.1}/.coveragerc +1 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/.github/workflows/codeql-analysis.yml +3 -3
- {djangobible-0.1.1 → djangobible-0.2.1}/.github/workflows/django.yml +2 -3
- djangobible-0.2.1/.github/workflows/tests.yml +27 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/.pre-commit-config.yaml +4 -4
- djangobible-0.2.1/CHANGELOG.md +61 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/PKG-INFO +9 -16
- {djangobible-0.1.1 → djangobible-0.2.1}/README.md +6 -4
- {djangobible-0.1.1 → djangobible-0.2.1}/djangobible/__init__.py +1 -1
- djangobible-0.2.1/noxfile.py +31 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/pyproject.toml +2 -17
- {djangobible-0.1.1 → djangobible-0.2.1}/requirements-test.txt +1 -0
- djangobible-0.2.1/requirements.txt +2 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/setup.cfg +9 -7
- djangobible-0.2.1/test_django_app/tests/unit_tests/__init__.py +0 -0
- djangobible-0.2.1/test_django_project/__init__.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/test_django_project/settings.py +1 -0
- djangobible-0.1.1/CHANGELOG.md +0 -28
- djangobible-0.1.1/requirements.txt +0 -2
- {djangobible-0.1.1 → djangobible-0.2.1}/.github/dependabot.yml +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/.gitignore +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/.sourcery.yaml +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/CODE_OF_CONDUCT.md +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/CONTRIBUTING.md +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/LICENSE +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/djangobible/apps.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/djangobible/fields.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/djangobible/migrations/0001_initial.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/djangobible/migrations/__init__.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/djangobible/models.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/djangobible/templatetags/__init__.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/djangobible/templatetags/verse_tags.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/djangobible/validators.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/manage.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/requirements-dev.txt +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/test_django_app/__init__.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/test_django_app/admin.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/test_django_app/apps.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/test_django_app/migrations/0001_initial.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/test_django_app/migrations/0002_testsingleverseobject.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/test_django_app/migrations/0003_alter_testsingleverseobject_verse.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/test_django_app/migrations/__init__.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/test_django_app/models.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/test_django_app/templates/verse_tags.html +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/test_django_app/tests/__init__.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/test_django_app/tests/factories.py +0 -0
- {djangobible-0.1.1/test_django_project → djangobible-0.2.1/test_django_app/tests/functional_tests}/__init__.py +0 -0
- {djangobible-0.1.1/test_django_app/tests → djangobible-0.2.1/test_django_app/tests/functional_tests}/test_admin.py +0 -0
- {djangobible-0.1.1/test_django_app/tests → djangobible-0.2.1/test_django_app/tests/functional_tests}/test_tags_functional.py +0 -0
- {djangobible-0.1.1/test_django_app/tests → djangobible-0.2.1/test_django_app/tests/unit_tests}/test_models.py +0 -0
- {djangobible-0.1.1/test_django_app/tests → djangobible-0.2.1/test_django_app/tests/unit_tests}/test_search.py +0 -0
- {djangobible-0.1.1/test_django_app/tests → djangobible-0.2.1/test_django_app/tests/unit_tests}/test_tags.py +0 -0
- {djangobible-0.1.1/test_django_app/tests → djangobible-0.2.1/test_django_app/tests/unit_tests}/test_validators.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/test_django_app/views.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/test_django_project/asgi.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/test_django_project/urls.py +0 -0
- {djangobible-0.1.1 → djangobible-0.2.1}/test_django_project/wsgi.py +0 -0
|
@@ -34,7 +34,7 @@ jobs:
|
|
|
34
34
|
|
|
35
35
|
# Initializes the CodeQL tools for scanning.
|
|
36
36
|
- name: Initialize CodeQL
|
|
37
|
-
uses: github/codeql-action/init@
|
|
37
|
+
uses: github/codeql-action/init@v3
|
|
38
38
|
with:
|
|
39
39
|
languages: ${{ matrix.language }}
|
|
40
40
|
# If you wish to specify custom queries, you can do so here or in a config file.
|
|
@@ -45,7 +45,7 @@ jobs:
|
|
|
45
45
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
|
46
46
|
# If this step fails, then you should remove it and run the build manually (see below)
|
|
47
47
|
- name: Autobuild
|
|
48
|
-
uses: github/codeql-action/autobuild@
|
|
48
|
+
uses: github/codeql-action/autobuild@v3
|
|
49
49
|
|
|
50
50
|
# ℹ️ Command-line programs to run using the OS shell.
|
|
51
51
|
# 📚 https://git.io/JvXDl
|
|
@@ -59,4 +59,4 @@ jobs:
|
|
|
59
59
|
# make release
|
|
60
60
|
|
|
61
61
|
- name: Perform CodeQL Analysis
|
|
62
|
-
uses: github/codeql-action/analyze@
|
|
62
|
+
uses: github/codeql-action/analyze@v3
|
|
@@ -4,7 +4,6 @@ on:
|
|
|
4
4
|
push:
|
|
5
5
|
branches: [ main ]
|
|
6
6
|
pull_request:
|
|
7
|
-
branches: [ main ]
|
|
8
7
|
|
|
9
8
|
jobs:
|
|
10
9
|
build:
|
|
@@ -13,12 +12,12 @@ jobs:
|
|
|
13
12
|
strategy:
|
|
14
13
|
max-parallel: 4
|
|
15
14
|
matrix:
|
|
16
|
-
python-version: [
|
|
15
|
+
python-version: ["3.11"]
|
|
17
16
|
|
|
18
17
|
steps:
|
|
19
18
|
- uses: actions/checkout@v4
|
|
20
19
|
- name: Set up Python ${{ matrix.python-version }}
|
|
21
|
-
uses: actions/setup-python@
|
|
20
|
+
uses: actions/setup-python@v5
|
|
22
21
|
with:
|
|
23
22
|
python-version: ${{ matrix.python-version }}
|
|
24
23
|
- name: Install Dependencies
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
name: Tests
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
pull_request:
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
tests:
|
|
11
|
+
runs-on: ${{ matrix.os }}
|
|
12
|
+
strategy:
|
|
13
|
+
matrix:
|
|
14
|
+
os:
|
|
15
|
+
[
|
|
16
|
+
ubuntu-latest,
|
|
17
|
+
windows-latest,
|
|
18
|
+
macos-latest,
|
|
19
|
+
]
|
|
20
|
+
steps:
|
|
21
|
+
- uses: actions/checkout@v4
|
|
22
|
+
- uses: wntrblm/nox@2024.04.15
|
|
23
|
+
with:
|
|
24
|
+
python-versions: "3.8, 3.9, 3.10, 3.11, 3.12, 3.13.0-beta.1"
|
|
25
|
+
- name: Test with NOX
|
|
26
|
+
run: |
|
|
27
|
+
nox --session tests
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
repos:
|
|
2
2
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
3
|
-
rev: v4.
|
|
3
|
+
rev: v4.6.0
|
|
4
4
|
hooks:
|
|
5
5
|
- id: trailing-whitespace
|
|
6
6
|
- id: end-of-file-fixer
|
|
@@ -9,15 +9,15 @@ repos:
|
|
|
9
9
|
- id: requirements-txt-fixer
|
|
10
10
|
- id: check-added-large-files
|
|
11
11
|
- repo: https://github.com/psf/black
|
|
12
|
-
rev:
|
|
12
|
+
rev: 24.4.2
|
|
13
13
|
hooks:
|
|
14
14
|
- id: black
|
|
15
15
|
- repo: https://github.com/pycqa/isort
|
|
16
|
-
rev: 5.
|
|
16
|
+
rev: 5.13.2
|
|
17
17
|
hooks:
|
|
18
18
|
- id: isort
|
|
19
19
|
- repo: https://github.com/pycqa/flake8
|
|
20
|
-
rev:
|
|
20
|
+
rev: 7.0.0
|
|
21
21
|
hooks:
|
|
22
22
|
- id: flake8
|
|
23
23
|
additional_dependencies:
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
### [0.2.1] - 2024-05-24
|
|
11
|
+
|
|
12
|
+
- Added support for Django 5.0
|
|
13
|
+
- Added full support for Python 3.12
|
|
14
|
+
- Added automated functional testing now that there is a version of greenlet that supports Python 3.12
|
|
15
|
+
- ~~Added automated testing for Python 3.13-beta~~ (not yet supported by greenlet)
|
|
16
|
+
- Added automated testing for Django 5.1-alpha
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Require the latest version of pythonbible (0.13.1)
|
|
21
|
+
|
|
22
|
+
### Removed
|
|
23
|
+
|
|
24
|
+
- Removed official support for Django 3.2 (due to end of life on 2024-04-01)
|
|
25
|
+
- Removed official support for Django 4.1 (due to end of life on 2023-12-01)
|
|
26
|
+
|
|
27
|
+
## [0.2.0] - 2023-10-04
|
|
28
|
+
|
|
29
|
+
### Added
|
|
30
|
+
|
|
31
|
+
- Added support for Python 3.12
|
|
32
|
+
- Added automated testing for Python 3.8 - 3.12; Django 3.2, 4.1, 4.2; and Ubuntu, macOS, and Windows
|
|
33
|
+
|
|
34
|
+
### Changed
|
|
35
|
+
|
|
36
|
+
- Require the latest version of pythonbible (0.12.0)
|
|
37
|
+
|
|
38
|
+
### Removed
|
|
39
|
+
|
|
40
|
+
- Removed official support for Django 4.0 (due to end of life on 2023-04-01)
|
|
41
|
+
|
|
42
|
+
## [0.1.1] - 2023-10-02
|
|
43
|
+
|
|
44
|
+
### Changed
|
|
45
|
+
|
|
46
|
+
- Require the latest version of pythonbible (0.11.1)
|
|
47
|
+
|
|
48
|
+
## 0.1.0 - 2023-07-03
|
|
49
|
+
|
|
50
|
+
### Added
|
|
51
|
+
|
|
52
|
+
- Added this changelog
|
|
53
|
+
|
|
54
|
+
### Removed
|
|
55
|
+
|
|
56
|
+
- Removed Python 3.7 support (due to end of life on 2023-06-27)
|
|
57
|
+
|
|
58
|
+
[unreleased]: https://github.com/avendesora/djangobible/compare/v0.2.1...HEAD
|
|
59
|
+
[0.2.1]: https://github.com/avendesora/djangobible/compare/v0.2.0...v0.2.1
|
|
60
|
+
[0.2.0]: https://github.com/avendesora/djangobible/compare/v0.1.1...v0.2.0
|
|
61
|
+
[0.1.1]: https://github.com/avendesora/djangobible/releases/tag/v0.1.1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: djangobible
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: djangobible python library.
|
|
5
5
|
Home-page: https://github.com/avendesora/djangobible
|
|
6
6
|
Author: Nathan Patton
|
|
@@ -8,17 +8,8 @@ Author-email: npatton@gmail.com
|
|
|
8
8
|
Requires-Python: >=3.8
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
-
Requires-Dist: Django
|
|
12
|
-
Requires-Dist: pythonbible
|
|
13
|
-
Requires-Dist: defusedxml >=0.7.1 ; extra == "all"
|
|
14
|
-
Requires-Dist: pre-commit >=2.20.0 ; extra == "dev"
|
|
15
|
-
Requires-Dist: coverage >=6.4.2 ; extra == "test"
|
|
16
|
-
Requires-Dist: factory-boy >=3.2.1 ; extra == "test"
|
|
17
|
-
Requires-Dist: playwright >=1.23.1 ; extra == "test"
|
|
18
|
-
Provides-Extra: all
|
|
19
|
-
Provides-Extra: dev
|
|
20
|
-
Provides-Extra: doc
|
|
21
|
-
Provides-Extra: test
|
|
11
|
+
Requires-Dist: Django>=4.2.0
|
|
12
|
+
Requires-Dist: pythonbible==0.13.1
|
|
22
13
|
|
|
23
14
|
# djangobible
|
|
24
15
|
|
|
@@ -39,8 +30,9 @@ The djangobible library is a Django app that wraps the [pythonbible](https://git
|
|
|
39
30
|
<tr>
|
|
40
31
|
<td>Tests</td>
|
|
41
32
|
<td>
|
|
42
|
-
<img src="https://github.com/avendesora/djangobible/workflows/
|
|
43
|
-
<
|
|
33
|
+
<img src="https://github.com/avendesora/djangobible/actions/workflows/tests.yml/badge.svg">
|
|
34
|
+
<img src="https://github.com/avendesora/djangobible/workflows/Django%20CI/badge.svg"><br/>
|
|
35
|
+
<a href="https://app.codacy.com/gh/avendesora/djangobible/coverage/dashboard"><img src="https://app.codacy.com/project/badge/Coverage/83a28131bf6642ed9e439344122686fc"></a>
|
|
44
36
|
</td>
|
|
45
37
|
</tr>
|
|
46
38
|
<tr>
|
|
@@ -55,8 +47,9 @@ The djangobible library is a Django app that wraps the [pythonbible](https://git
|
|
|
55
47
|
<tr>
|
|
56
48
|
<td>Supported Python/Django Versions</td>
|
|
57
49
|
<td>
|
|
58
|
-
<a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue?logo=python&logoColor=lightgray"></a><br />
|
|
59
|
-
<a href="https://www.djangoproject.com/download/"><img src="https://img.shields.io/badge/Django-
|
|
50
|
+
<a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue?logo=python&logoColor=lightgray"></a><br />
|
|
51
|
+
<a href="https://www.djangoproject.com/download/"><img src="https://img.shields.io/badge/Django-4.2%20%7C%205.0%20%7C%205.1alpha-blue"></a><br />
|
|
52
|
+
Attempted to test with Python 3.13, but the testing framework has a dependency that has not yet been updated to work with Python 3.13.
|
|
60
53
|
</td>
|
|
61
54
|
</tr>
|
|
62
55
|
</table>
|
|
@@ -17,8 +17,9 @@ The djangobible library is a Django app that wraps the [pythonbible](https://git
|
|
|
17
17
|
<tr>
|
|
18
18
|
<td>Tests</td>
|
|
19
19
|
<td>
|
|
20
|
-
<img src="https://github.com/avendesora/djangobible/workflows/
|
|
21
|
-
<
|
|
20
|
+
<img src="https://github.com/avendesora/djangobible/actions/workflows/tests.yml/badge.svg">
|
|
21
|
+
<img src="https://github.com/avendesora/djangobible/workflows/Django%20CI/badge.svg"><br/>
|
|
22
|
+
<a href="https://app.codacy.com/gh/avendesora/djangobible/coverage/dashboard"><img src="https://app.codacy.com/project/badge/Coverage/83a28131bf6642ed9e439344122686fc"></a>
|
|
22
23
|
</td>
|
|
23
24
|
</tr>
|
|
24
25
|
<tr>
|
|
@@ -33,8 +34,9 @@ The djangobible library is a Django app that wraps the [pythonbible](https://git
|
|
|
33
34
|
<tr>
|
|
34
35
|
<td>Supported Python/Django Versions</td>
|
|
35
36
|
<td>
|
|
36
|
-
<a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue?logo=python&logoColor=lightgray"></a><br />
|
|
37
|
-
<a href="https://www.djangoproject.com/download/"><img src="https://img.shields.io/badge/Django-
|
|
37
|
+
<a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue?logo=python&logoColor=lightgray"></a><br />
|
|
38
|
+
<a href="https://www.djangoproject.com/download/"><img src="https://img.shields.io/badge/Django-4.2%20%7C%205.0%20%7C%205.1alpha-blue"></a><br />
|
|
39
|
+
Attempted to test with Python 3.13, but the testing framework has a dependency that has not yet been updated to work with Python 3.13.
|
|
38
40
|
</td>
|
|
39
41
|
</tr>
|
|
40
42
|
</table>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"""Nox sessions."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import nox
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# TODO - add "3.13" to python versions once greenlet is updated
|
|
9
|
+
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12"])
|
|
10
|
+
@nox.parametrize("django", ["4.2"])
|
|
11
|
+
def tests(session: nox.Session, django: str) -> None:
|
|
12
|
+
"""Run the test suite."""
|
|
13
|
+
_run_all_tests_for_environment(session, django)
|
|
14
|
+
session.notify("tests_django_5")
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# TODO - add "3.13" to python versions once greenlet is updated
|
|
18
|
+
@nox.session(python=["3.10", "3.11", "3.12"])
|
|
19
|
+
@nox.parametrize("django", ["5.0", "5.1a1"])
|
|
20
|
+
def tests_django_5(session: nox.Session, django: str) -> None:
|
|
21
|
+
"""Run the test suite for Django 5.0+ (Python 3.10+)."""
|
|
22
|
+
_run_all_tests_for_environment(session, django)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def _run_all_tests_for_environment(session: nox.Session, django: str) -> None:
|
|
26
|
+
session.install(f"django~={django}")
|
|
27
|
+
session.install("pythonbible")
|
|
28
|
+
session.install("factory-boy")
|
|
29
|
+
session.install("playwright")
|
|
30
|
+
session.run("playwright", "install")
|
|
31
|
+
session.run("python", "manage.py", "test")
|
|
@@ -11,23 +11,8 @@ classifiers = ["License :: OSI Approved :: MIT License"]
|
|
|
11
11
|
description-file = "README.md"
|
|
12
12
|
requires-python = ">=3.8"
|
|
13
13
|
requires = [
|
|
14
|
-
"Django
|
|
15
|
-
"pythonbible
|
|
16
|
-
]
|
|
17
|
-
|
|
18
|
-
[tool.flit.metadata.requires-extra]
|
|
19
|
-
test = [
|
|
20
|
-
"coverage >=6.4.2",
|
|
21
|
-
"factory-boy >=3.2.1",
|
|
22
|
-
"playwright >=1.23.1",
|
|
23
|
-
]
|
|
24
|
-
doc = [
|
|
25
|
-
]
|
|
26
|
-
dev = [
|
|
27
|
-
"pre-commit >=2.20.0",
|
|
28
|
-
]
|
|
29
|
-
all = [
|
|
30
|
-
"defusedxml >=0.7.1",
|
|
14
|
+
"Django>=4.2.0",
|
|
15
|
+
"pythonbible==0.13.1",
|
|
31
16
|
]
|
|
32
17
|
|
|
33
18
|
[tool.isort]
|
|
@@ -26,20 +26,22 @@ per-file-ignores =
|
|
|
26
26
|
test_django_app/__init__.py:D104
|
|
27
27
|
test_django_app/migrations/*.py:D100,D101,D104,WPS102,WPS301,WPS432
|
|
28
28
|
test_django_app/models.py:WPS432
|
|
29
|
-
test_django_app/tests
|
|
29
|
+
test_django_app/tests*/__init__.py:D104
|
|
30
30
|
test_django_app/tests/factories.py:ANN001,ANN002,ANN003,ANN102,ANN206,D100,D101,D106,S105,S311,WPS306
|
|
31
|
-
test_django_app/tests/test_admin.py:D100,D101,D102
|
|
32
|
-
test_django_app/tests/test_models.py:D100,D101,D102,WPS118,WPS210,WPS214,WPS326
|
|
33
|
-
test_django_app/tests/test_search.py:D100,D101,D102,D103,WPS210,WPS326
|
|
34
|
-
test_django_app/tests/test_tags.py:D100,D101,D102,D103,WPS214
|
|
35
|
-
test_django_app/tests/test_tags_functional.py:D100,D101,D102
|
|
36
|
-
test_django_app/tests/test_validators.py:D100,D101,D102
|
|
31
|
+
test_django_app/tests/functional_tests/test_admin.py:D100,D101,D102
|
|
32
|
+
test_django_app/tests/unit_tests/test_models.py:D100,D101,D102,WPS118,WPS210,WPS214,WPS326
|
|
33
|
+
test_django_app/tests/unit_tests/test_search.py:D100,D101,D102,D103,WPS210,WPS326
|
|
34
|
+
test_django_app/tests/unit_tests/test_tags.py:D100,D101,D102,D103,WPS214
|
|
35
|
+
test_django_app/tests/functional_tests/test_tags_functional.py:D100,D101,D102
|
|
36
|
+
test_django_app/tests/unit_tests/test_validators.py:D100,D101,D102
|
|
37
37
|
test_django_app/views.py:ANN001,ANN201
|
|
38
38
|
|
|
39
39
|
test_django_project/__init__.py:D104
|
|
40
40
|
test_django_project/settings.py:E501,WPS226,WPS407
|
|
41
41
|
test_django_project/urls.py:D100
|
|
42
42
|
|
|
43
|
+
noxfile.py:INP001,WPS114
|
|
44
|
+
|
|
43
45
|
exclude =
|
|
44
46
|
venv
|
|
45
47
|
manage.py
|
|
File without changes
|
|
File without changes
|
djangobible-0.1.1/CHANGELOG.md
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
|
|
5
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
-
|
|
8
|
-
## [Unreleased]
|
|
9
|
-
|
|
10
|
-
## [0.1.1] - 2023-10-02
|
|
11
|
-
|
|
12
|
-
### Changed
|
|
13
|
-
|
|
14
|
-
- Require the latest version of pythonbible (0.11.1)
|
|
15
|
-
|
|
16
|
-
## [0.1.0] - 2023-07-03
|
|
17
|
-
|
|
18
|
-
### Added
|
|
19
|
-
|
|
20
|
-
- Added this changelog
|
|
21
|
-
|
|
22
|
-
### Removed
|
|
23
|
-
|
|
24
|
-
- Removed Python 3.7 support (due to end of life on 2023-06-27)
|
|
25
|
-
|
|
26
|
-
[unreleased]: https://github.com/avendesora/djangobible/compare/v0.1.1...HEAD
|
|
27
|
-
[0.1.1]: https://github.com/avendesora/djangobible/releases/tag/v0.1.0...v0.1.1
|
|
28
|
-
[0.1.0]: https://github.com/avendesora/djangobible/releases/tag/v0.1.0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{djangobible-0.1.1 → djangobible-0.2.1}/test_django_app/migrations/0002_testsingleverseobject.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|