Skip to content

Commit 811f9a7

Browse files
committed
switch to requirements file and fix linting
1 parent 695114a commit 811f9a7

File tree

4 files changed

+91
-3
lines changed

4 files changed

+91
-3
lines changed

arda/pron.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ def is_ipa_vowel(ch):
1616
return ch.lower() in "ɑeiouy"
1717

1818

19-
2019
def is_diphthong(s, ipa):
2120
if ipa:
2221
return s.lower() in [
@@ -184,7 +183,6 @@ def syllabify(word, ipa=False, debug=False):
184183
("t", "t"),
185184
("v", "v"),
186185
("w", "w"),
187-
188186
("á", "ɑː"),
189187
("a", "ɑ"),
190188
("eä", "e·ɑ"),

lint.sh

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

33
isort arda setup.py
44
black arda setup.py
5-
flake8 --max-line-length=88 arda setup.py
5+
flake8 --max-line-length=88 --ignore=E203 arda setup.py

requirements-dev.in

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
black
2+
isort
3+
flake8
4+
coverage
5+
build
6+
twine

requirements-dev.txt

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# This file was autogenerated by uv via the following command:
2+
# uv pip compile requirements-dev.in
3+
black==25.1.0
4+
# via -r requirements-dev.in
5+
build==1.2.2.post1
6+
# via -r requirements-dev.in
7+
certifi==2025.4.26
8+
# via requests
9+
charset-normalizer==3.4.1
10+
# via requests
11+
click==8.1.8
12+
# via black
13+
coverage==7.8.0
14+
# via -r requirements-dev.in
15+
docutils==0.21.2
16+
# via readme-renderer
17+
flake8==7.2.0
18+
# via -r requirements-dev.in
19+
id==1.5.0
20+
# via twine
21+
idna==3.10
22+
# via requests
23+
isort==6.0.1
24+
# via -r requirements-dev.in
25+
jaraco-classes==3.4.0
26+
# via keyring
27+
jaraco-context==6.0.1
28+
# via keyring
29+
jaraco-functools==4.1.0
30+
# via keyring
31+
keyring==25.6.0
32+
# via twine
33+
markdown-it-py==3.0.0
34+
# via rich
35+
mccabe==0.7.0
36+
# via flake8
37+
mdurl==0.1.2
38+
# via markdown-it-py
39+
more-itertools==10.7.0
40+
# via
41+
# jaraco-classes
42+
# jaraco-functools
43+
mypy-extensions==1.1.0
44+
# via black
45+
nh3==0.2.21
46+
# via readme-renderer
47+
packaging==25.0
48+
# via
49+
# black
50+
# build
51+
# twine
52+
pathspec==0.12.1
53+
# via black
54+
platformdirs==4.3.7
55+
# via black
56+
pycodestyle==2.13.0
57+
# via flake8
58+
pyflakes==3.3.2
59+
# via flake8
60+
pygments==2.19.1
61+
# via
62+
# readme-renderer
63+
# rich
64+
pyproject-hooks==1.2.0
65+
# via build
66+
readme-renderer==44.0
67+
# via twine
68+
requests==2.32.3
69+
# via
70+
# id
71+
# requests-toolbelt
72+
# twine
73+
requests-toolbelt==1.0.0
74+
# via twine
75+
rfc3986==2.0.0
76+
# via twine
77+
rich==14.0.0
78+
# via twine
79+
twine==6.1.0
80+
# via -r requirements-dev.in
81+
urllib3==2.4.0
82+
# via
83+
# requests
84+
# twine

0 commit comments

Comments
 (0)