-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated based on new version of cookiecutter-django-package
- Loading branch information
Showing
21 changed files
with
1,963 additions
and
780 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,17 +2,17 @@ | |
"_output_dir": "/home/watervize/omenapps_packages", | ||
"_template": "./cookiecutter-django-package/", | ||
"author": "Jack Linke", | ||
"copyright_year": "2023", | ||
"copyright_year": "2024", | ||
"development_status": "Development Status :: 1 - Planning", | ||
"docker_compose_python_version": "3.11", | ||
"docker_compose_python_version": "3.12", | ||
"email": "[email protected]", | ||
"github_owner": "OmenApps", | ||
"github_owner": "jacklinke", | ||
"github_user": "jacklinke", | ||
"license": "MIT", | ||
"package_description": "A Django package that ...", | ||
"package_name": "cookiecutter_django_package_instance", | ||
"project_name": "cookiecutter-django-package-instance", | ||
"use_playwright": "y", | ||
"use_postgres": "y", | ||
"version": "2023.10.1" | ||
"version": "2024.05.1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
pip==23.3.1 | ||
pipx==1.2.1 | ||
nox==2023.4.22 | ||
pip==24.0 | ||
pipx==1.5.0 | ||
nox==2024.4.15 | ||
nox-poetry==1.0.3 | ||
playwright==1.39.0 | ||
poetry==1.6.1 | ||
pytest==7.4.2 | ||
pytest-cov==4.1.0 | ||
pytest-django==4.5.2 | ||
playwright==1.44.0 | ||
poetry==1.8.3 | ||
poetry-plugin-export==1.8.0 | ||
pytest==8.2.1 | ||
pytest-cov==5.0.0 | ||
pytest-django==4.8.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,9 +16,9 @@ jobs: | |
fetch-depth: 2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4.7.1 | ||
uses: actions/setup-python@v5.1.0 | ||
with: | ||
python-version: "3.11" | ||
python-version: "3.12" | ||
|
||
- name: Upgrade pip | ||
run: | | ||
|
@@ -56,21 +56,21 @@ jobs: | |
- name: Publish package on PyPI | ||
if: steps.check-version.outputs.tag | ||
uses: pypa/[email protected].10 | ||
uses: pypa/[email protected].14 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_TOKEN }} | ||
|
||
- name: Publish package on TestPyPI | ||
if: "! steps.check-version.outputs.tag" | ||
uses: pypa/[email protected].10 | ||
uses: pypa/[email protected].14 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.TEST_PYPI_TOKEN }} | ||
repository-url: https://test.pypi.org/legacy/ | ||
|
||
- name: Publish the release notes | ||
uses: release-drafter/release-drafter@v5.25.0 | ||
uses: release-drafter/release-drafter@v6.0.0 | ||
with: | ||
publish: ${{ steps.check-version.outputs.tag != '' }} | ||
tag: ${{ steps.check-version.outputs.tag }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
furo==2023.9.10 | ||
sphinx==7.2.6 | ||
sphinx-click==5.0.1 | ||
myst_parser==2.0.0 | ||
furo==2024.5.6 | ||
sphinx==7.3.7 | ||
sphinx-click==6.0.0 | ||
myst-parser==3.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
from django.test import TestCase # noqa | ||
|
||
|
||
# Create your tests here. | ||
"""Tests for cookiecutter_django_package_instance example application.""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.