Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
FSPT-119: remove pyscss from the bundle step
Browse files Browse the repository at this point in the history
Now that the files are just css remove the pyscss filter step. This lets
us remove the dependency.

While I'm here it doesn't look like pyopenssl is removed so remove that.
  • Loading branch information
sfount committed Dec 9, 2024
1 parent 2b14979 commit b53834a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 31 deletions.
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ dependencies = [
"jsmin==3.0.1",
"num2words==0.5.13",
"openapi-spec-validator==0.7.1",
"pyopenssl==24.2.1",
"pyscss==1.4.0",
"requests==2.32.3",
"swagger-ui-bundle==1.1.0",
"xhtml2pdf==0.2.16",
Expand Down
4 changes: 2 additions & 2 deletions static_assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ def init_assets(app=None, auto_build=False, static_folder="app/static/dist"):
output="js/main.min.js",
)
css = Bundle(
"./scss/*.scss",
filters="pyscss,cssmin",
"./css/*.css",
filters="cssmin",
output="css/main.min.css",
extra={"rel": "stylesheet/css"},
)
Expand Down
29 changes: 2 additions & 27 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b53834a

Please sign in to comment.