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
3 changes: 2 additions & 1 deletion .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ permissions:

jobs:
build:
name: Build Package
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -45,7 +46,7 @@ jobs:
overwrite: true

upload:
name: Upload to PyPI
name: Upload Package to PyPI
needs: [ build ]
runs-on: ubuntu-latest
environment:
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## v1.2.1 (10.04.2025)

* Update dependencies
* Update the package classifiers

## v1.2.0 (30.06.2024)

* Bump minimal Python version to 3.9
* Use ruff as the code linter and formatter
* Update dependencies

## v1.1.0 (05.10.2021)

* Introduced optional `normalizedsmooth` argument to reduce dependence on xdata and weights [#47](https://github.com/espdev/csaps/pull/47)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "csaps"
version = "1.2.0"
version = "1.2.1"
description = "Cubic spline approximation (smoothing)"
authors = ["Evgeny Prilepin <esp.home@gmail.com>"]
license = "MIT"
Expand Down