Skip to content

Commit 11c4c90

Browse files
committed
fix: update service name from 'project' to 'dev' in docker-compose and workflow
1 parent e91c320 commit 11c4c90

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
3333
- name: Test with pytest
3434
run: |
35-
docker-compose -f docker-compose.yml --env-file .env exec -T project pytest
35+
docker-compose -f docker-compose.yml --env-file .env exec -T dev pytest
3636
3737
- name: Clean up
3838
if: always()

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: "3.3"
22
services:
3-
project:
3+
dev:
44
build:
55
context: .
66
dockerfile: ./Dockerfile

docs/source/Installation/Installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Required libraries are as follows. Refer to the ``pyproject.toml`` file for the
3333
.. .. code-block:: toml
3434
3535
.. [tool.poetry.dependencies]
36-
.. python-template = {git = "https://github.com/nglcobdai/python-template.git", tag = "v0.0.1"}
36+
.. python-template = {git = "https://github.com/nglcobdai/python-template.git", tag = "v0.0.2"}
3737
3838
.. 2. **Install the package**
3939

docs/source/Version/Version.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ v0.0.1 - Initial Release
66
- Created `python_template` library
77

88
`Full Changelog v0.0.1 <https://github.com/nglcobdai/python-template/commits/v0.0.1>`_
9+
10+
v0.0.2 - Update service name
11+
------------------------
12+
- Uodate service name from `project` to `dev` in docker-compose and workflow
13+
14+
`Full Changelog v0.0.2 <https://github.com/nglcobdai/python-template/commits/v0.0.2>`_

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "python-template"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
description = ""
55
authors = ["Kodai YAMASHITA <[email protected]>"]
66
readme = "README.md"

src/python_template/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__name__ = "python-template"
22
__copyright__ = "2024 KodaiYamashita"
3-
__version__ = "v0.0.1"
3+
__version__ = "v0.0.2"
44
__license__ = "MIT"
55
__author__ = "KodaiYamashita"
66
__author_email__ = "[email protected]"

0 commit comments

Comments
 (0)