Skip to content

Commit 76e9b1f

Browse files
committed
Refactored license_expression ina proper module
Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent aff7033 commit 76e9b1f

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[bdist_wheel]
22
universal = 1
33

4-
[aliases]
5-
release = clean --all sdist --formats=gztar,zip bdist_wheel register upload
6-
74
[metadata]
85
license_file = NOTICE
96

7+
[aliases]
8+
release = clean --all sdist --formats=gztar,zip bdist_wheel register upload
9+
1010
[tool:pytest]
1111
norecursedirs =
1212
.git

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name='license-expression',
20-
version='0.8',
20+
version='0.9',
2121
license='apache-2.0',
2222
description=desc,
2323
long_description=desc,
@@ -30,7 +30,7 @@
3030
include_package_data=True,
3131
zip_safe=False,
3232
classifiers=[
33-
'Development Status :: 4 - Beta',
33+
'Development Status :: 4 - Alpha',
3434
'License :: OSI Approved :: Apache Software License',
3535
'Intended Audience :: Developers',
3636
'Operating System :: OS Independent',
@@ -48,6 +48,6 @@
4848
'licence'
4949
],
5050
install_requires=[
51-
'boolean.py',
51+
'boolean.py >= 3.2, < 4.0.0',
5252
]
5353
)

0 commit comments

Comments
 (0)