Skip to content

Commit

Permalink
version up (#821)
Browse files Browse the repository at this point in the history
* travis yaml

* update travsis

* version up

* update readme
  • Loading branch information
yuji38kwmt authored Jul 12, 2022
1 parent 1a997ce commit 1b7d36a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ python:
- "3.10"
install:
# pipをアップグレードする理由: pipのバージョンが古いと、pillowなど環境ごとにwheelを提供しているライブラリのインストールに失敗する可能性があるため
- pip install pip poetry --upgrade
- pip install pip --upgrade
- pip install poetry
- travis_retry poetry install
script:
- make lint
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@
* `project download`コマンドを廃止します。`project download`コマンドは、名前からどのようなファイルがダウンロードできるのか想像しにくいためです。替わりに`annotation download`コマンドなど、各リソースに対するdownloadコマンドをご利用ください。


### 2022-09-01 以降
* `input_data put`コマンドでZIPファイルの登録する機能を廃止します。替わりに`input_data put_with_json`コマンドはご利用ください。



# Requirements
* Python 3.8+

Expand Down
2 changes: 1 addition & 1 deletion annofabcli/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.67.0"
__version__ = "1.68.0"
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 = "annofabcli"
version = "1.67.0"
version = "1.68.0"
description = "Utility Command Line Interface for AnnoFab"
authors = ["yuji38kwmt"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_input_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def test_put_input_data_with_zip(self):
main(
[
"input_data",
"put",
"put_with_zip",
"--project_id",
project_id,
"--zip",
Expand Down

0 comments on commit 1b7d36a

Please sign in to comment.