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

Fix project dependencies #96

Merged
merged 3 commits into from
Dec 11, 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
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ on:
branches:
- main
- deshima2.0
- v0.3
pull_request:
branches:
- main
- deshima2.0
- v0.3

jobs:
job:
Expand All @@ -31,6 +33,6 @@ jobs:
with:
poetry-version: "1.8.3"
- run: poetry install
- run: black --check decode docs tests
- run: black --check deshima_sensitivity docs tests
- run: pytest -v tests
- run: docs/build
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ message: "If you use this software, please cite it as below."

title: "deshima-sensitivity"
abstract: "Sensitivity calculator for DESHIMA-type spectrometers"
version: 0.3.1
version: 0.3.2
date-released: 2024-12-11
license: "MIT"
doi: "10.5281/zenodo.3966839"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Click the budge below to open it in [Google colaboratory](http://colab.research.

### Stable version (recommended)

[![open stable version in colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/deshima-dev/deshima-sensitivity/blob/v0.3.1/sensitivity.ipynb)
[![open stable version in colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/deshima-dev/deshima-sensitivity/blob/v0.3.2/sensitivity.ipynb)

### Latest version

Expand All @@ -29,7 +29,7 @@ In the case of running it in a local Python environment, please follow the requi
## Requirements

- **Python:** 3.10, 3.11, 3.12, and 3.13 (tested by the authors)
- **Dependencies:** See [pyproject.toml](https://github.com/deshima-dev/deshima-sensitivity/blob/v0.3.1/pyproject.toml)
- **Dependencies:** See [pyproject.toml](https://github.com/deshima-dev/deshima-sensitivity/blob/v0.3.2/pyproject.toml)

## Installation

Expand Down
2 changes: 1 addition & 1 deletion deshima_sensitivity/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"""

# flake8: noqa
__version__ = "0.3.1"
__version__ = "0.3.2"


# modules
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

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

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 = "deshima-sensitivity"
version = "0.3.1"
version = "0.3.2"
description = "Sensitivity calculator for DESHIMA-type spectrometers"
authors = [
"Akira Endo <a.endo@tudelft.nl>",
Expand Down
2 changes: 1 addition & 1 deletion sensitivity.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"metadata": {},
"outputs": [],
"source": [
"!pip install -q \"deshima-sensitivity==0.3.1\""
"!pip install -q \"deshima-sensitivity==0.3.2\""
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion tests/test_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "0.3.1"
assert __version__ == "0.3.2"
Loading