Skip to content

Commit 85286b9

Browse files
authored
Merge pull request #23 from Appsilon/bump-versions
chore: bump versions
2 parents 20cd94c + d602130 commit 85286b9

File tree

5 files changed

+32
-86
lines changed

5 files changed

+32
-86
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repos:
99
exclude: ^data/records\.parquet$
1010

1111
- repo: https://github.com/astral-sh/ruff-pre-commit
12-
rev: v0.3.4
12+
rev: v0.3.5
1313
hooks:
1414
- id: ruff
1515
- id: ruff-format

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ Our template ensures a streamlined development lifecycle, offering:
7878
- `pre-commit` for clean commits.
7979
- `ruff` for linting (`ruff check`) and formatting (`ruff format`).
8080
- `pytest-cov` to monitor test coverage.
81-
- `bandit` for security checks.
8281
- **Continuous Integration**: Automated checks via GitHub Actions.
8382
- **Structured Logging with Loguru**: Enhanced debugging and monitoring.
8483
- **Best Practice Configuration**: Using `pydantic-settings`.

poetry.lock

Lines changed: 29 additions & 78 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,13 @@ icecream = "^2.1.3" # For debugging, print() on steroids
2222
ipykernel = "^6.29.3" # For running Jupyter notebooks in VS Code
2323
ipywidgets = "^8.1.2" # For running Jupyter notebooks in VS Code
2424
pre-commit = "^3.6.2"
25-
ruff = "^0.3.2"
25+
ruff = "^0.3.5"
2626
rsconnect-python = "^1.22.0"
2727
pytest = "^8.1.1"
2828
playwright = "^1.42.0"
2929
pytest-playwright = "^0.4.4"
3030
requests = "^2.31.0"
3131
tenacity = "^8.2.3"
32-
bandit = "^1.7.8"
3332
pytest-watch = "^4.2.0"
3433
pytest-cov = "^5.0.0"
3534
mypy = "^1.9.0"

quality_checks.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
#!/bin/bash
22
# This script is for running quality checks in GitHub Actions.
3-
# It runs tests, security analysis with Bandit, and type checks with mypy.
3+
# It runs tests, and type checks with mypy.
44

55
set -e # Exit immediately if a command exits with a non-zero status.
66

77
echo "Running pytest for unit tests..."
88
poetry run pytest
99

10-
echo "Running Bandit for security analysis..."
11-
poetry run bandit -r pyshiny_template
12-
1310
echo "Running mypy for type checking..."
1411
poetry run mypy pyshiny_template

0 commit comments

Comments
 (0)