Skip to content

Commit 96730ff

Browse files
author
Konstantinos Bairaktaris
authored
Merge pull request #287 from transifex/bump_pyyaml
Bump PyYaml to 5.4
2 parents 51f0d15 + 43ccc85 commit 96730ff

File tree

2 files changed

+10
-18
lines changed

2 files changed

+10
-18
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PyYAML==5.1
1+
PyYAML==5.4
22
django==1.11.29
33
mistune==0.7.3
44
polib==1.0.3

setup.py

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,16 @@
44
import versioneer
55

66
install_requires = [
7-
'polib==1.0.3',
8-
'mistune==0.7.3',
9-
'PyYAML==5.1',
10-
'pyparsing==2.2.0',
11-
'lxml==4.6.2',
12-
'beautifulsoup4==4.9.3',
13-
'ucflib @ git+https://github.com/kbairak/ucflib.git@py3_compatibility#egg=ucflib-0.2.1', # noqa
7+
"polib==1.0.3",
8+
"mistune==0.7.3",
9+
"PyYAML==5.4",
10+
"pyparsing==2.2.0",
11+
"lxml==4.6.2",
12+
"beautifulsoup4==4.9.3",
13+
"ucflib @ git+https://github.com/kbairak/ucflib.git@py3_compatibility#egg=ucflib-0.2.1", # noqa
1414
]
1515

16-
tests_require = [
17-
'nose',
18-
'mock',
19-
'coverage',
20-
'nosexcover'
21-
]
16+
tests_require = ["nose", "mock", "coverage", "nosexcover"]
2217

2318
setup(
2419
name="openformats",
@@ -31,8 +26,5 @@
3126
install_requires=install_requires,
3227
tests_require=tests_require,
3328
test_suite="openformats.tests.run_tests.run_all",
34-
packages=find_packages(
35-
where='.',
36-
exclude=('tests*', 'testbed')
37-
)
29+
packages=find_packages(where=".", exclude=("tests*", "testbed")),
3830
)

0 commit comments

Comments
 (0)