Skip to content

Commit

Permalink
new fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
valpesendorfer committed Feb 2, 2024
1 parent 12bcd67 commit a803cae
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ parts/
sdist/
var/
wheels/
.wheel/
*.egg-info/
.installed.cfg
*.egg
Expand Down
6 changes: 2 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,8 @@ CHANGES
- distribute built extension on pypi
- v2.0.3:
- restructure and improve packaging
- v2.0.4:
- fix module import
- v2.0.5:
- fix wheel packaging
- v2.0.6:
- fix module import and wheel packaging

-----

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@
setup(
include_dirs=[numpy.get_include()],
cmdclass=cmdclass,
packages=find_packages(),
packages=["vam", "vam.whittaker", "vam.whittaker._version"],
package_data={"vam.whittaker": ["*.pyx", "*.c"]},
ext_modules=ext_modules,
setup_requires=["pytest-runner"],
tests_require=["pytest"],
Expand Down
2 changes: 1 addition & 1 deletion vam/whittaker/_version/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.5"
__version__ = "2.0.6"

0 comments on commit a803cae

Please sign in to comment.