Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: 🔖 Bump version to 1.0.2 #1432

Merged
merged 7 commits into from
Jul 27, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/docker-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
# https://github.com/docker/build-push-action
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@1ca370b3a9802c92e886402e0dd88098a2533b12
uses: docker/build-push-action@5176d81f87c23d6fc96624dfdbcd9f3830bbe445
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion: Consider using a version tag instead of a commit hash for the docker/build-push-action.

Using a version tag (e.g., @v4) instead of a specific commit hash can make it easier to manage and update the action in the future. It also ensures you're using a stable, tagged release.

Suggested change
uses: docker/build-push-action@5176d81f87c23d6fc96624dfdbcd9f3830bbe445
uses: docker/build-push-action@v4

with:
context: .
push: ${{ github.event_name != 'pull_request' }}
Expand Down
1,512 changes: 797 additions & 715 deletions poetry.lock

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "SpectraFit"
version = "1.0.1"
version = "1.0.2"
description = "Fast fitting of 2D- and 3D-Spectra with established routines"
readme = "README.md"
authors = ["Anselm Hahn <anselm.hahn@gmail.com>"]
Expand Down Expand Up @@ -82,7 +82,10 @@ pydot = { version = "^3.0.0", optional = true }
jupyter-dash = { version = "^0.4.2", optional = true }
ipywidgets = { version = "^8.0.4", optional = true }
dash-bootstrap-components = { version = "^1.3.0", optional = true }
dash-bootstrap-templates = { version = "^1.0.7", optional = true }
dash-bootstrap-templates = [
{ version = "<=1.1.2", markers = "python_version < '3.10'" },
{ version = "^1.2.0", markers = "python_version >= '3.10'" },
]
python-pptx = { version = "^0.6.22", optional = true }

[tool.poetry.group.dev.dependencies]
Expand Down Expand Up @@ -113,7 +116,7 @@ prospector = { extras = [
"pylint",
], version = "^1.10.2" }
bump-pydantic = "^0.8.0"
types-setuptools = ">=70.3.0.20240710,<70.4.0.0"
types-setuptools = ">=71.1.0.20240726,<71.2.0.0"

[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5.0"
Expand Down
2 changes: 1 addition & 1 deletion spectrafit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
SpectraFit uses [Semantic Versioning](https://semver.org/).
"""

__version__ = "1.0.1"
__version__ = "1.0.2"
2 changes: 1 addition & 1 deletion vendor/docker-stacks
Submodule docker-stacks updated 189 files
Loading