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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12"]

steps:
- name: Checkout Project Package
Expand All @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
python-version: ["3.11"]

steps:
- name: Checkout Project Package
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
python-version: ["3.11"]
steps:
- name: Checkout Project Package
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "python-library"
version = "1.1.3"
version = "1.1.4"
description = "Provide base template for python library"
authors = ["JaeyoungHeo <jay.jaeyoung@gmail.com>"]
maintainers = ["JaeyoungHeo <jay.jaeyoung@gmail.com>"]
Expand All @@ -12,7 +12,7 @@ packages = [
]

[tool.poetry.dependencies]
python = ">=3.10 <3.12"
python = ">=3.10 <3.13"

[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
Expand All @@ -35,7 +35,7 @@ line_length = 88
[tool.black]
preview = true
line-length = 88
target-version = ['py39', 'py310', 'py311']
target-version = ['py310', 'py311', 'py312']

[tool.pytest.ini_options]
addopts = "-p no:cacheprovider"
Expand Down
2 changes: 1 addition & 1 deletion src/python_library/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.0"
__version__ = "1.1.4"
2 changes: 1 addition & 1 deletion tests/test_python_library.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "1.1.0"
assert __version__ == "1.1.4"
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ isolated_build = True
envlist =
py310,
py311,
py312,

[gh-actions]
python =
3.10: py310
3.11: py311
3.12: py312

[testenv]
allowlist_externals = poetry
Expand Down
Loading