Skip to content

Commit

Permalink
chore: update api version
Browse files Browse the repository at this point in the history
  • Loading branch information
ekkx committed Jun 23, 2024
1 parent 8645c0c commit 3e02702
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ WORKDIR /app
COPY Pipfile .
RUN pip install pipenv
RUN pipenv install
RUN echo 'pipenv shell' >> ~/.bashrc
COPY . .
13 changes: 11 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,25 +1,34 @@
.PHONY:
up:
up: # 実行環境の構築&起動
docker compose up -d
docker compose exec -it yaylib bash
docker compose exec yaylib bash

.PHONY:
down: # コンテナ停止
docker compose down

.PHONY:
clean-doc:
rm -rf docs/yaylib.* docs/modules.rst docs/_build/

.PHONY:
doc: # ドキュメントの生成
make clean-doc
sphinx-apidoc -f -e -o ./docs . tests/* *_test.py setup.py
sphinx-build -b singlehtml ./docs ./docs/_build

.PHONY:
build: # パッケージのビルド
python setup.py sdist
python setup.py bdist_wheel

.PHONY:
clean: # ビルドファイル削除
rm -rf build/
rm -rf dist/
rm -rf yaylib.egg-info/

.PHONY:
publish: # PYPIにパッケージのアップロード
make build
twine upload --repository pypi dist/*
Expand Down
6 changes: 3 additions & 3 deletions yaylib/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@


class Configs:
API_VERSION_NAME = "3.34"
VERSION_NAME = "3.34.0"
API_VERSION_KEY = "4a522ab1f65a4418bf74ba69f99c1e1d"
API_VERSION_NAME = "3.40"
VERSION_NAME = "3.40.0"
API_VERSION_KEY = "d175f967bb6444f49ff08b3b6d646527"
API_KEY = "ccd59ee269c01511ba763467045c115779fcae3050238a252f1bd1a4b65cfec6"
SHARED_KEY = "yayZ1"
STORE_KEY = "yayZ1payment"
Expand Down

0 comments on commit 3e02702

Please sign in to comment.