Skip to content

Commit

Permalink
Merge pull request #59 from jedie/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
jedie authored May 21, 2024
2 parents 7cbabdc + c7d783d commit 18323d6
Show file tree
Hide file tree
Showing 9 changed files with 1,889 additions and 1,540 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ __pycache__
/static/
/media/
*.sqlite3
*.json

# Include "ignored" *.json:
!**/fixtures/*.json
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,10 @@ To make a new release, do this:

[comment]: <> (✂✂✂ auto generated history start ✂✂✂)

* [**dev**](https://github.com/jedie/manage_django_project/compare/v0.7.2...main)
* 2024-05-21 - Update requirements
* 2024-05-21 - Safety: Ignore CVE-2018-20225
* 2024-05-21 - update from manageprojects template
* [v0.7.2](https://github.com/jedie/manage_django_project/compare/v0.7.1...v0.7.2)
* 2024-02-20 - Add '--strip-extras' to pip-compile and update requirements
* [v0.7.1](https://github.com/jedie/manage_django_project/compare/v0.7.0...v0.7.1)
Expand All @@ -196,11 +200,11 @@ To make a new release, do this:
* 2023-12-16 - Bugfix code style
* 2023-12-16 - Use update_readme_history & as git hook
* 2023-11-07 - Update requirements
* [v0.6.4](https://github.com/jedie/manage_django_project/compare/v0.6.3...v0.6.4)
* 2023-11-01 - update requirements

<details><summary>Expand older history entries ...</summary>

* [v0.6.4](https://github.com/jedie/manage_django_project/compare/v0.6.3...v0.6.4)
* 2023-11-01 - update requirements
* [v0.6.3](https://github.com/jedie/manage_django_project/compare/v0.6.2...v0.6.3)
* 2023-11-01 - Update requirements
* 2023-11-01 - Autogenerate history in README
Expand Down
9 changes: 8 additions & 1 deletion manage_django_project/management/commands/safety.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,11 @@ class Command(RichCommand):
def handle(self, *args, **options):
self.console.print(f'\n[bold]{self.help}')

verbose_check_call('safety', 'check', '-r', 'requirements.dev.txt')
verbose_check_call(
'safety',
'check',
'-r',
'requirements.dev.txt',
'--ignore',
'67599', # Ignore CVE-2018-20225: We do not use the `--extra-index-url` option
)
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,12 @@ version_module_name = "manage_django_project" # Used by "update-readme-history"
src = ['.']
revision = "origin/main..."
line_length = 119
verbose = true
color = true
skip_string_normalization = true
diff = false
check = false
stdout = false
isort = true
flynt = true
lint = [
"flake8",
]
Expand Down Expand Up @@ -175,6 +173,7 @@ cookiecutter_template = "https://github.com/jedie/cookiecutter_templates/"
cookiecutter_directory = "managed-django-project"
applied_migrations = [
"a66e5ae", # 2024-01-16T19:13:13+01:00
"1f3a70e", # 2024-05-21T21:22:39+02:00
]

[manageprojects.cookiecutter_context.cookiecutter]
Expand Down
786 changes: 434 additions & 352 deletions requirements.dev.txt

Large diffs are not rendered by default.

786 changes: 434 additions & 352 deletions requirements.django32.txt

Large diffs are not rendered by default.

786 changes: 434 additions & 352 deletions requirements.django42.txt

Large diffs are not rendered by default.

786 changes: 434 additions & 352 deletions requirements.django50.txt

Large diffs are not rendered by default.

264 changes: 137 additions & 127 deletions requirements.txt

Large diffs are not rendered by default.

0 comments on commit 18323d6

Please sign in to comment.