Skip to content

Commit

Permalink
0.13.1 Add support for python3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
nayaverdier committed Nov 28, 2023
1 parent 9669f24 commit 81673e6
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 36 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.13.1 2023-11-28

- Add support for python3.12

## 0.13.0 2023-06-06

- Automatically convert int/float from templated variables, instead of being strings
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
black = black instater tests
flake8 = flake8 instater tests
isort = isort instater tests
mypy = dmypy run -- instater tests --ignore-missing-imports --scripts-are-modules --check-untyped-defs --no-implicit-optional
mypy = mypy instater tests --ignore-missing-imports --scripts-are-modules --check-untyped-defs --no-implicit-optional
install-pip = python -m pip install -U setuptools pip wheel
test = pytest --cov=instater --cov-report term-missing tests/

Expand Down
32 changes: 0 additions & 32 deletions instater/importer.py

This file was deleted.

6 changes: 4 additions & 2 deletions instater/tasks/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from ..importer import import_submodules
# isort: off
from ._task import TASKS, Task

import_submodules(__name__)
# isort: on

from . import command, copy, debug, file, git, group, pacman, service, user # noqa: F401

__all__ = ["TASKS", "Task"]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

setup(
name="instater",
version="0.13.0",
version="0.13.1",
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 81673e6

Please sign in to comment.