Skip to content

Commit

Permalink
Release: 7.0b2. Fixed packaging.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrada committed Dec 17, 2019
1 parent 12b5da0 commit 0c7d5d5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fuzzylite/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def name(self) -> str:

@property
def version(self) -> str:
return "7.0b1"
return "7.0b2"

@property
def license(self) -> str:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ def setup_package() -> None:
maintainer=fl.lib.author,
maintainer_email=fl.lib.author_email,
license=fl.lib.license,
packages=['fuzzylite'],
package_dir={'fuzzylite': '.'},
packages=setuptools.find_packages(),
# package_dir={'fuzzylite': '.'},
# entry_points={
# 'console_scripts': ['fuzzylite=fuzzylite:console']
# },
Expand Down
2 changes: 1 addition & 1 deletion tests/test_library.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def test_library_exports_dir(self) -> None:

def test_library_vars(self) -> None:
self.assertEqual(fuzzylite.__name__, "pyfuzzylite")
self.assertEqual(fuzzylite.__version__, "7.0b1")
self.assertEqual(fuzzylite.__version__, "7.0b2")
self.assertEqual(fuzzylite.__doc__, fuzzylite.lib.summary)


Expand Down

0 comments on commit 0c7d5d5

Please sign in to comment.