Skip to content

Commit e9ebb6d

Browse files
authored
[BO-863] 패키지 최신화 (#41)
* CHG: python version matrix 추가 * CHG: package version update
1 parent df04f15 commit e9ebb6d

File tree

6 files changed

+12
-10
lines changed

6 files changed

+12
-10
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.10", "3.11"]
10+
python-version: ["3.10", "3.11", "3.12"]
1111

1212
steps:
1313
- name: Checkout Project Package
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
strategy:
3333
matrix:
34-
python-version: ["3.10"]
34+
python-version: ["3.11"]
3535

3636
steps:
3737
- name: Checkout Project Package
@@ -64,7 +64,7 @@ jobs:
6464
runs-on: ubuntu-latest
6565
strategy:
6666
matrix:
67-
python-version: ["3.10"]
67+
python-version: ["3.11"]
6868
steps:
6969
- name: Checkout Project Package
7070
uses: actions/checkout@v3

poetry.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "python-library"
3-
version = "1.1.3"
3+
version = "1.1.4"
44
description = "Provide base template for python library"
55
authors = ["JaeyoungHeo <[email protected]>"]
66
maintainers = ["JaeyoungHeo <[email protected]>"]
@@ -12,7 +12,7 @@ packages = [
1212
]
1313

1414
[tool.poetry.dependencies]
15-
python = ">=3.10 <3.12"
15+
python = ">=3.10 <3.13"
1616

1717
[tool.poetry.group.dev.dependencies]
1818
pytest = "^7.4.3"
@@ -35,7 +35,7 @@ line_length = 88
3535
[tool.black]
3636
preview = true
3737
line-length = 88
38-
target-version = ['py39', 'py310', 'py311']
38+
target-version = ['py310', 'py311', 'py312']
3939

4040
[tool.pytest.ini_options]
4141
addopts = "-p no:cacheprovider"

src/python_library/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.1.0"
1+
__version__ = "1.1.4"

tests/test_python_library.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_version():
5-
assert __version__ == "1.1.0"
5+
assert __version__ == "1.1.4"

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ isolated_build = True
33
envlist =
44
py310,
55
py311,
6+
py312,
67

78
[gh-actions]
89
python =
910
3.10: py310
1011
3.11: py311
12+
3.12: py312
1113

1214
[testenv]
1315
allowlist_externals = poetry

0 commit comments

Comments
 (0)