Skip to content

Commit

Permalink
chore(deps): lock file maintenance (#356)
Browse files Browse the repository at this point in the history
Co-authored-by: Renovate GitHub Bot <github@renovatebot.com>
Co-authored-by: Xuan Hu <i@huxuan.org>
  • Loading branch information
3 people committed Mar 4, 2024
1 parent 404ecae commit e55fd84
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 26 deletions.
52 changes: 26 additions & 26 deletions pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/ss_python/cli.py
@@ -1,4 +1,5 @@
"""Command Line Interface."""

import typer

app = typer.Typer()
Expand Down
1 change: 1 addition & 0 deletions src/ss_python/settings.py
@@ -1,4 +1,5 @@
"""Settings Module."""

import logging
from logging import getLevelName
from typing import Optional
Expand Down
1 change: 1 addition & 0 deletions template/src/{{ module_name }}/cli.py.jinja
@@ -1,4 +1,5 @@
"""Command Line Interface."""

import typer

app = typer.Typer()
Expand Down
1 change: 1 addition & 0 deletions template/src/{{ module_name }}/settings.py.jinja
@@ -1,5 +1,6 @@
[% from pathjoin("includes", "version_compare.jinja") import version_higher_than -%]
"""Settings Module."""

import logging
from logging import getLevelName
[%- if not version_higher_than(min_py, "3.10") %]
Expand Down
1 change: 1 addition & 0 deletions template/tests/cli_test.py.jinja
@@ -1,4 +1,5 @@
"""Test for cli."""

from typer.testing import CliRunner

from {{ module_name }}.cli import app
Expand Down
1 change: 1 addition & 0 deletions template/tests/settings_test.py.jinja
@@ -1,4 +1,5 @@
"""Test for settings."""

import os

from {{ module_name }}.settings import global_settings, settings
Expand Down
1 change: 1 addition & 0 deletions tests/cli_test.py
@@ -1,4 +1,5 @@
"""Test for cli."""

from typer.testing import CliRunner

from ss_python.cli import app
Expand Down
1 change: 1 addition & 0 deletions tests/settings_test.py
@@ -1,4 +1,5 @@
"""Test for settings."""

import os

from ss_python.settings import global_settings, settings
Expand Down

0 comments on commit e55fd84

Please sign in to comment.