Skip to content

Commit

Permalink
packaging fix, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
valpesendorfer committed Feb 2, 2024
1 parent 0499c48 commit 12bcd67
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 0 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@

include _version/__init__.py
include README.rst
recursive-include tests *py
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ CHANGES
- restructure and improve packaging
- v2.0.4:
- fix module import

- v2.0.5:
- fix wheel packaging

-----

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# pylint: disable=invalid-name, line-too-long
"""setup.py for VAM whittaker core"""

from setuptools import setup, Extension
from setuptools import setup, Extension, find_packages

import numpy

Expand Down Expand Up @@ -43,6 +43,7 @@
setup(
include_dirs=[numpy.get_include()],
cmdclass=cmdclass,
packages=find_packages(),
ext_modules=ext_modules,
setup_requires=["pytest-runner"],
tests_require=["pytest"],
Expand Down
1 change: 0 additions & 1 deletion vam/whittaker/_version.py

This file was deleted.

1 change: 1 addition & 0 deletions vam/whittaker/_version/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "2.0.5"

0 comments on commit 12bcd67

Please sign in to comment.