Skip to content

Commit

Permalink
Final edits before release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ZackSheffieldSEL committed Apr 22, 2020
1 parent 319ff43 commit 0ea3e4b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fixedpoint/__init__.py
Expand Up @@ -36,7 +36,7 @@
]
__maintainer__ = "Zack Sheffield"
__email__ = "zack_sheffield@selinc.com"
__version__ = "1.0.0-b1"
__version__ = "1.0.0"

from fixedpoint.fixedpoint import * # noqa # ignore unused imports
from fixedpoint.functions import * # noqa # ignore unused imports
Expand Down
1 change: 1 addition & 0 deletions fixedpoint/fixedpoint.py
Expand Up @@ -30,6 +30,7 @@ def _sn(__id: Mapping[str, object]) -> int:

class FixedPointBits(int):
"""Allow for slicing and mapping into FixedPoint.bits."""

s: bool
m: int
n: int
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -11,7 +11,7 @@ author_email = zack_sheffield@selinc.com
maintainer = Zack Sheffield
maintainer_email = zack_sheffield@selinc.com
classifiers =
Development Status :: 4 - Beta
Development Status :: 5 - Production/Stable
License :: OSI Approved :: BSD License
Natural Language :: English
Intended Audience :: Developers
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -86,7 +86,7 @@ def get_version() -> str:
if __name__ == '__main__':

# https://setuptools.readthedocs.io/en/latest/setuptools.html#specifying-values
# The file: directive is sandboxed and wont reach anything outside the
# The file: directive is sandboxed and won't reach anything outside the
# directory containing setup.py. Since long_description.rst is not in the
# same directory, it is specified here instead of in setup.cfg.
setuptools.setup(long_description=long_description(),
Expand Down

0 comments on commit 0ea3e4b

Please sign in to comment.