Skip to content

Commit 5a857e8

Browse files
authored
Merge pull request #34 from entelecheia/master
2 parents 8435067 + 2219c47 commit 5a857e8

10 files changed

+622
-711
lines changed

.github/workflows/lint_and_test.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ on:
66
workflow_dispatch:
77
push:
88
branches:
9-
- master
10-
- release
9+
- "*"
1110
paths:
1211
- "src/**"
1312
- "tests/**"
@@ -22,7 +21,7 @@ jobs:
2221
strategy:
2322
matrix:
2423
os: [ubuntu-latest]
25-
python-version: [3.8]
24+
python-version: [3.9]
2625

2726
steps:
2827
# Checkout the code base #

.github/workflows/prerelease-to-test-pypi.yaml

-46
This file was deleted.

.github/workflows/prerelease.yaml

-53
This file was deleted.

.github/workflows/release-patch.yaml

-51
This file was deleted.

.github/workflows/release-test.yaml

+10-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_dispatch:
77
pull_request:
88
branches:
9-
- master
9+
- release
1010

1111
permissions:
1212
contents: write
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
os: [ubuntu-latest]
25-
python-version: [3.8]
25+
python-version: [3.9]
2626

2727
steps:
2828
# Checkout the code base #
@@ -35,6 +35,14 @@ jobs:
3535
- name: Set env variable
3636
run: echo "BRANCH=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV
3737

38+
# install poetry
39+
- name: Install poetry
40+
run: pipx install poetry>=1.3.2
41+
42+
# install dependencies
43+
- name: Install dependencies
44+
run: poetry install --with dev
45+
3846
# semantic release
3947
- name: Python Semantic Release to PyPI
4048
run: |

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
os: [ubuntu-latest]
30-
python-version: [3.8]
30+
python-version: [3.9]
3131

3232
# Load all steps #
3333
steps:

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
<!--next-version-placeholder-->
22

3+
## v2.0.4 (2024-03-27)
4+
5+
### Fix
6+
7+
* **poetry:** Update Python and scipy versions ([`821b8db`](https://github.com/entelecheia/eKoNLPy/commit/821b8db78d528b97be4501bce3764c447017c709))
8+
* **dependencies:** Update pandas version to allow to 2.2.1 ([`777a889`](https://github.com/entelecheia/eKoNLPy/commit/777a8893387d7025ee82582e02fb2b752ad91190))
9+
310
## v2.0.3 (2023-08-25)
411

512
### Fix

0 commit comments

Comments
 (0)