File tree 3 files changed +10
-6
lines changed 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
- .PHONY : test build deploy
1
+ .PHONY : clean test build deploy
2
+
3
+ clean :
4
+ rm -rf dist build
2
5
3
6
test :
4
- python -m unittest tests
5
- build :
6
- rm -rf dist/ *
7
+ python -m unittest tests/test * .py
8
+
9
+ build : clean
7
10
python -m build
11
+
8
12
deploy : build
9
13
python -m twine upload dist/*
Original file line number Diff line number Diff line change 4
4
import threading
5
5
import ast
6
6
7
- __version__ = "20240413 .1"
7
+ __version__ = "20240515 .1"
8
8
9
9
re_language = re .compile (r"^\w\w(-\w+)*.json$" )
10
10
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " pluralize"
3
- version = " 20240413 .1"
3
+ version = " 20240515 .1"
4
4
authors = [{
name =
" Massimo Di Pierro" ,
email =
" [email protected] " },]
5
5
description = " i18n + pluralization library with multi-plural form support and thread safe for web apps"
6
6
readme = " README.md"
You can’t perform that action at this time.
0 commit comments