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
4 changes: 2 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
current_version = 1.2.0
current_version = 1.2.1
commit = True
tag = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<release>.*)-(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}-{release}-{build}
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog
## [1.2.1] 2025-11-03
### Changed
- added `audit` to tox config

### Removed
- unused `mkdocs-with-pdf` dependency

## [1.2.0] 2025-14-09
## [1.2.0] 2025-09-14
### Changed
- move pandera to main dependency group
- new style pandera import statement
Expand Down
2,188 changes: 874 additions & 1,314 deletions poetry.lock

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "solvis"
version = "1.2.0"
version = "1.2.1"
description = "analysis of opensha modular solution files."
readme = "README.md"
license = "AGPL-3.0-or-later"
Expand Down Expand Up @@ -49,7 +49,6 @@ doc = [
"mkdocs-material (>=9.5.21)",
"mkdocs-material-extensions (>=1.3.1)",
"mkdocs-pymdownx-material-extras (>=2.5.6)",
"mkdocs-with-pdf (>=0.9.3)",
"mkdocs",
"mkdocstrings (>=0.26.2)",
"mkdocstrings-python (>=1.18.2,<2.0.0)",
Expand Down Expand Up @@ -120,4 +119,4 @@ skip_gitignore = true

[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
build-backend = "poetry.core.masonry.api"
10 changes: 9 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ exclude_lines =

[tox:tox]
isolated_build = true
envlist = py310, py311, py312, format, lint, build-linux, build-macos
envlist = audit, py310, py311, py312, format, lint, build-linux, build-macos

[gh-actions]
python =
Expand All @@ -80,6 +80,14 @@ setenv =
commands =
pytest --cov=solvis --cov-branch --cov-report=xml --cov-report=term-missing test

[testenv:audit]
allowlist_externals =
poetry
commands =
poetry export --all-groups --output audit.txt
poetry run pip-audit -r audit.txt --require-hashes
poetry run safety scan

[testenv:format]
allowlist_externals =
isort
Expand Down
2 changes: 1 addition & 1 deletion solvis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@

from .solution import CompositeSolution, FaultSystemSolution, InversionSolution

__version__ = '1.2.0'
__version__ = '1.2.1'