From e81888961c65c4986457db990ab44a6d631f6e23 Mon Sep 17 00:00:00 2001 From: knightebsuku Date: Tue, 7 Jan 2025 12:16:34 +0200 Subject: [PATCH 1/2] update python versions --- .github/workflows/sqlconsole.yml | 6 +++--- setup.cfg | 5 ++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sqlconsole.yml b/.github/workflows/sqlconsole.yml index b8228d5..e0e7d98 100644 --- a/.github/workflows/sqlconsole.yml +++ b/.github/workflows/sqlconsole.yml @@ -2,9 +2,9 @@ name: SqlConsole on: push: - branches: [ "master" ] + branches: [ "master", "dev" ] pull_request: - branches: [ "master" ] + branches: [ "master", "dev" ] permissions: contents: read @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8","3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: diff --git a/setup.cfg b/setup.cfg index ff1e294..832f6cf 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = django-sqlconsole -version = 1.4.0 +version = 1.4.1 description = sql console is an app which allows for the execution of sql queries in the admin section of django. long_description = file: README.md long_description_content_type= text/markdown @@ -18,7 +18,6 @@ classifiers = Programming Language :: Python Programming Language :: Python :: 3 Programming Language :: Python :: 3 :: Only - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 @@ -31,7 +30,7 @@ install_requires = django ~= 4.2 include_package_data = true packages = find_namespace: -python_requires = >=3.8 +python_requires = >=3.9 [options.packages.find] exclude = From 89ba25f4abd269e2ae1b56055a2b666ca75bb03c Mon Sep 17 00:00:00 2001 From: knightebsuku Date: Tue, 7 Jan 2025 12:17:29 +0200 Subject: [PATCH 2/2] bump versions --- requirements.txt | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index 15580b1..79373d5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,12 @@ +# +# This file is autogenerated by pip-compile with Python 3.11 +# by the following command: +# +# pip-compile requirements.in +# asgiref==3.8.1 # via django -django==4.2.13 +django==4.2.17 # via -r requirements.in -sqlparse==0.5.0 +sqlparse==0.5.3 # via django -typing-extensions==4.12.1 - # via asgiref