diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b58330..e45fa3b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.9, "3.10", 3.11, 3.12, 3.13, 3.14] + python-version: [3.9, "3.10", 3.11, 3.12, 3.13] steps: - uses: actions/cache@v4 with: diff --git a/README.md b/README.md index d7bd7d6..cb25281 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ [![image](https://img.shields.io/pypi/v/tortoise-cli.svg?style=flat)](https://pypi.python.org/pypi/tortoise-cli) [![image](https://img.shields.io/github/license/tortoise/tortoise-cli)](https://github.com/tortoise/tortoise-cli) -[![image](https://github.com/tortoise/tortoise-cli/workflows/pypi/badge.svg)](https://github.com/tortoise/tortoise-cli/actions?query=workflow:pypi) +[![image](https://github.com/tortoise/tortoise-cli/workflows/ci/badge.svg)](https://github.com/tortoise/tortoise-cli/actions?query=workflow:ci) -A cli tool for tortoise-orm, build on top of click and ptpython. +A cli tool for tortoise-orm, build on top of asyncclick and ptpython. ## Installation @@ -24,6 +24,9 @@ Options: -V, --version Show the version and exit. -c, --config TEXT TortoiseORM config dictionary path, like settings.TORTOISE_ORM + --generate-schemas / --no-generate-schemas + Whether generate schemas after TortoiseORM + inited -h, --help Show this message and exit. Commands: diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index a1cce8e..0000000 --- a/setup.cfg +++ /dev/null @@ -1,2 +0,0 @@ -[flake8] -ignore = E501,W503