From a2ed43a863744ca2671c9b99793c197a86bcf6a7 Mon Sep 17 00:00:00 2001 From: Akio Taniguchi Date: Fri, 17 Nov 2023 16:27:11 +0000 Subject: [PATCH 1/5] #16 Fix project dependencies --- poetry.lock | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/poetry.lock b/poetry.lock index 17fbd6f..23d88e9 100644 --- a/poetry.lock +++ b/poetry.lock @@ -969,5 +969,5 @@ files = [ [metadata] lock-version = "2.0" -python-versions = "^3.9" -content-hash = "0a9d128487bcce1d1d5337dae1fd8e2c18f3fb4d2a270dab7267d5c6a3a3535f" +python-versions = ">=3.9, <3.13" +content-hash = "d807d0ecfa0509b28710c796234c44941d881990ee57576fe8d8d2ec3cc78220" diff --git a/pyproject.toml b/pyproject.toml index 57a5102..e15a8e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ license = "MIT" readme = "README.md" [tool.poetry.dependencies] -python = "^3.9" +python = ">=3.9, <3.13" fire = "^0.5" requests = "^2.30" tqdm = "^4.65" From c50932824755d0b87a88eaa9a8ecce00ea96fb44 Mon Sep 17 00:00:00 2001 From: Akio Taniguchi Date: Fri, 17 Nov 2023 16:27:43 +0000 Subject: [PATCH 2/5] #16 Fix Poetry version --- .devcontainer/devcontainer.json | 2 +- .github/workflows/tests.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 52f68e9..643766b 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,7 +1,7 @@ { "name": "deshima-rawdata", "image":"python:3.11", - "onCreateCommand": "pip install poetry==1.6.1", + "onCreateCommand": "pip install poetry==1.7.1", "postCreateCommand": "poetry install", "containerEnv": { "POETRY_VIRTUALENVS_CREATE": "false" diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index e52490d..d0bd759 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -24,7 +24,7 @@ jobs: with: python-version: ${{ matrix.python }} - name: Install project dependencies - run: pip install poetry && poetry install + run: pip install poetry==1.7.1 && poetry install - name: Test code's formatting (Black) run: black --check deshima_rawdata tests - name: Test code's typing (Pyright) From 965b43862229422fe5aa8f1029d2ada912f21241 Mon Sep 17 00:00:00 2001 From: Akio Taniguchi Date: Fri, 17 Nov 2023 16:27:58 +0000 Subject: [PATCH 3/5] #16 Fix title of README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2e5d421..5abf54c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# rawdata +# deshima-rawdata [![Release](https://img.shields.io/pypi/v/deshima-rawdata?label=Release&color=cornflowerblue&style=flat-square)](https://pypi.org/project/deshima-rawdata/) [![Python](https://img.shields.io/pypi/pyversions/deshima-rawdata?label=Python&color=cornflowerblue&style=flat-square)](https://pypi.org/project/deshima-rawdata/) From 21d60a69c5b6c5741dcbab7d87ea9fc23ee80747 Mon Sep 17 00:00:00 2001 From: Akio Taniguchi Date: Fri, 17 Nov 2023 16:28:40 +0000 Subject: [PATCH 4/5] =?UTF-8?q?#16=20Update=20package=20version=20(2023.11?= =?UTF-8?q?.3=20=E2=86=92=202023.11.4)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CITATION.cff | 2 +- deshima_rawdata/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 48ed8f8..3a05606 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -3,7 +3,7 @@ message: "If you use this software, please cite it as below." title: "deshima-rawdata" abstract: "DESHIMA raw data and downloader package" -version: 2023.11.3 +version: 2023.11.4 date-released: 2023-11-16 license: "MIT" doi: "10.5281/zenodo.10145185" diff --git a/deshima_rawdata/__init__.py b/deshima_rawdata/__init__.py index 83c3f08..417210d 100644 --- a/deshima_rawdata/__init__.py +++ b/deshima_rawdata/__init__.py @@ -1,5 +1,5 @@ __all__ = ["cli", "download", "list"] -__version__ = "2023.11.3" +__version__ = "2023.11.4" # submodules diff --git a/pyproject.toml b/pyproject.toml index e15a8e6..7a70ed8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "deshima-rawdata" -version = "2023.11.3" +version = "2023.11.4" description = "DESHIMA raw data and downloader package" authors = ["Akio Taniguchi "] license = "MIT" From d694a509c3739f3024d48758384699d0a1e7ab5e Mon Sep 17 00:00:00 2001 From: Akio Taniguchi Date: Fri, 17 Nov 2023 16:28:57 +0000 Subject: [PATCH 5/5] #16 Update release date --- CITATION.cff | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CITATION.cff b/CITATION.cff index 3a05606..0d90e69 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -4,7 +4,7 @@ message: "If you use this software, please cite it as below." title: "deshima-rawdata" abstract: "DESHIMA raw data and downloader package" version: 2023.11.4 -date-released: 2023-11-16 +date-released: 2023-11-17 license: "MIT" doi: "10.5281/zenodo.10145185" url: "https://github.com/deshima-dev/rawdata"