Skip to content

Commit

Permalink
v23.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronny Vedrilla committed Nov 20, 2023
1 parent a8e24d3 commit 49b5cb8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

**23.11.2 (2023-11-20)**
* Added typer as package dev dependency
* Improved Readme template

**23.11.1 (2023-11-17)**
* Improved Readme template

Expand Down
2 changes: 1 addition & 1 deletion ambient_package_update/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Ambient package update tool for clean and swift maintenance"""

__version__ = "23.11.1"
__version__ = "23.11.2"
2 changes: 2 additions & 0 deletions ambient_package_update/metadata/constants.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from ambient_package_update import __version__

DEV_DEPENDENCIES = [
# Updater
"typer~=0.9"
# Test runner
"freezegun~=1.2",
"pytest-django~=4.5",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:

- name: Run pre-commit hooks
run: pre-commit run --all-files --hook-stage push

{% if has_migrations %}
validate_migrations:
name: Validate migrations
Expand All @@ -36,8 +35,7 @@ jobs:
run: python -m pip install -U pip-tools && pip-compile --extra {% for area, dependency_list in optional_dependencies.items() %}{{ area }},{% endfor %} -o requirements.txt pyproject.toml --resolver=backtracking && pip-sync

- name: Validate migration integrity
run: python manage.py makemigrations --check --dry-run
{% endif %}
run: python manage.py makemigrations --check --dry-run{% endif %}

tests:
name: Python ${% raw %}{{ matrix.python-version }}{% endraw %}, django ${% raw %}{{ matrix.django-version }}{% endraw %}
Expand Down

0 comments on commit 49b5cb8

Please sign in to comment.