Skip to content

Commit f68e88a

Browse files
authored
#17 Merge pull request from deshima-dev/astropenguin/issue16
Fix project dependencies
2 parents 3f48308 + d694a50 commit f68e88a

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "deshima-rawdata",
33
"image":"python:3.11",
4-
"onCreateCommand": "pip install poetry==1.6.1",
4+
"onCreateCommand": "pip install poetry==1.7.1",
55
"postCreateCommand": "poetry install",
66
"containerEnv": {
77
"POETRY_VIRTUALENVS_CREATE": "false"

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
python-version: ${{ matrix.python }}
2626
- name: Install project dependencies
27-
run: pip install poetry && poetry install
27+
run: pip install poetry==1.7.1 && poetry install
2828
- name: Test code's formatting (Black)
2929
run: black --check deshima_rawdata tests
3030
- name: Test code's typing (Pyright)

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ message: "If you use this software, please cite it as below."
33

44
title: "deshima-rawdata"
55
abstract: "DESHIMA raw data and downloader package"
6-
version: 2023.11.3
7-
date-released: 2023-11-16
6+
version: 2023.11.4
7+
date-released: 2023-11-17
88
license: "MIT"
99
doi: "10.5281/zenodo.10145185"
1010
url: "https://github.com/deshima-dev/rawdata"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# rawdata
1+
# deshima-rawdata
22

33
[![Release](https://img.shields.io/pypi/v/deshima-rawdata?label=Release&color=cornflowerblue&style=flat-square)](https://pypi.org/project/deshima-rawdata/)
44
[![Python](https://img.shields.io/pypi/pyversions/deshima-rawdata?label=Python&color=cornflowerblue&style=flat-square)](https://pypi.org/project/deshima-rawdata/)

deshima_rawdata/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__all__ = ["cli", "download", "list"]
2-
__version__ = "2023.11.3"
2+
__version__ = "2023.11.4"
33

44

55
# submodules

poetry.lock

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

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[tool.poetry]
22
name = "deshima-rawdata"
3-
version = "2023.11.3"
3+
version = "2023.11.4"
44
description = "DESHIMA raw data and downloader package"
55
authors = ["Akio Taniguchi <taniguchi@a.phys.nagoya-u.ac.jp>"]
66
license = "MIT"
77
readme = "README.md"
88

99
[tool.poetry.dependencies]
10-
python = "^3.9"
10+
python = ">=3.9, <3.13"
1111
fire = "^0.5"
1212
requests = "^2.30"
1313
tqdm = "^4.65"

0 commit comments

Comments
 (0)