Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

- name: Test with pytest
run: |
docker-compose -f docker-compose.yml --env-file .env exec -T project pytest
docker-compose -f docker-compose.yml --env-file .env exec -T dev pytest

- name: Clean up
if: always()
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: "3.3"
services:
project:
dev:
build:
context: .
dockerfile: ./Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion docs/source/Installation/Installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Required libraries are as follows. Refer to the ``pyproject.toml`` file for the
.. .. code-block:: toml

.. [tool.poetry.dependencies]
.. python-template = {git = "https://github.com/nglcobdai/python-template.git", tag = "v0.0.1"}
.. python-template = {git = "https://github.com/nglcobdai/python-template.git", tag = "v0.0.2"}

.. 2. **Install the package**

Expand Down
6 changes: 6 additions & 0 deletions docs/source/Version/Version.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,9 @@ v0.0.1 - Initial Release
- Created `python_template` library

`Full Changelog v0.0.1 <https://github.com/nglcobdai/python-template/commits/v0.0.1>`_

v0.0.2 - Update service name
------------------------
- Uodate service name from `project` to `dev` in docker-compose and workflow

`Full Changelog v0.0.2 <https://github.com/nglcobdai/python-template/commits/v0.0.2>`_
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 = "python-template"
version = "0.0.1"
version = "0.0.2"
description = ""
authors = ["Kodai YAMASHITA <nglcobdai@gmail.com>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/python_template/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__name__ = "python-template"
__copyright__ = "2024 KodaiYamashita"
__version__ = "v0.0.1"
__version__ = "v0.0.2"
__license__ = "MIT"
__author__ = "KodaiYamashita"
__author_email__ = "nglcobdai@gmail.com"
Expand Down
Loading