Skip to content

Commit

Permalink
adds blackisort and deprecates python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Apr 11, 2024
1 parent e848e02 commit faa3c3e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ readme = "README.md"
license = {text = "Apache-2.0"}
dependencies = [
# https://github.com/WolfgangFahl/nicegui_widgets
"ngwidgets>=0.3.3",
"ngwidgets>=0.14.2",
# https://pypi.org/project/pylodstorage/
"pyLodStorage>=0.4.10",
"pyLodStorage>=0.10.3",
# https://pypi.org/project/SQLAlchemy/
"SQLAlchemy>=2.0.22",
# https://pypi.org/project/SQLAlchemy-Utils/
Expand All @@ -37,15 +37,15 @@ dependencies = [
'rdflib>=7.0.0'
]

requires-python = ">=3.8"
requires-python = ">=3.9"
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"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",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Software Development :: User Interfaces",
"Intended Audience :: Developers",
Expand Down
7 changes: 7 additions & 0 deletions scripts/blackisort
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash
# WF 2024-01-10
package=frontend
isort tests/*.py
black tests/*.py
isort $package/*.py
black $package/*.py

0 comments on commit faa3c3e

Please sign in to comment.