From 5e3d1340a55f6e004f79adc4aa127a9d7f3130b1 Mon Sep 17 00:00:00 2001 From: Dylan Verheul Date: Mon, 16 Sep 2024 19:52:34 +0200 Subject: [PATCH] Update package --- .github/workflows/test.yml | 2 ++ pyproject.toml | 4 +--- tox.ini | 5 ++--- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b746aaa1..828ff235 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,6 +41,8 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Update repositories + run: sudo apt-get update - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: diff --git a/pyproject.toml b/pyproject.toml index 8593090c..d9696848 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,9 +25,7 @@ classifiers = [ "Topic :: Software Development :: Libraries", "Topic :: Utilities", ] -dependencies = [ - "Django>=4.2", -] +dependencies = ["Django>=4.2"] description = "Bootstrap 3 for Django" keywords = ["django", "bootstrap", "bootstrap3"] license = {file = "LICENSE"} diff --git a/tox.ini b/tox.ini index b40bc702..37926f15 100644 --- a/tox.ini +++ b/tox.ini @@ -7,7 +7,7 @@ envlist = py311-{4.2,5.0,5.1,main}, py312-{4.2,5.0,5.1,main}, docs, - lint, + ruff, [testenv] basepython = @@ -32,9 +32,8 @@ deps = [testenv:ruff] basepython = python3.11 -allowlist_externals = ruff deps = ruff -commands = ruff . +commands = ruff check . [testenv:docs] basepython = python3.11