Skip to content

Commit 5bba5c9

Browse files
committed
Update pypi-publish.yml
1 parent dffc860 commit 5bba5c9

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

.github/workflows/pypi-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: [3.6, 3.7, 3.8, 3.9, pypy3]
13+
python-version: 3.7
1414

1515
steps:
1616
- uses: actions/checkout@v2

pythainlp/wangchanberta/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
__all__ = [
23
"ThaiNameTagger",
34
"pos_tag",

pythainlp/wangchanberta/core.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
from typing import Dict, List, Tuple, Union
23
import re
34
from transformers import (

pythainlp/wangchanberta/postag.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
from typing import Dict, List, Tuple, Union
23
import re
34
from transformers import (

0 commit comments

Comments
 (0)