Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/sqlconsole.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: SqlConsole

on:
push:
branches: [ "master" ]
branches: [ "master", "dev" ]
pull_request:
branches: [ "master" ]
branches: [ "master", "dev" ]

permissions:
contents: read
Expand All @@ -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:
Expand Down
12 changes: 8 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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
5 changes: 2 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand All @@ -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 =
Expand Down
Loading