Skip to content

Commit

Permalink
Merge pull request #36 from chrishavlin/main
Browse files Browse the repository at this point in the history
manifest fix and another patch release
  • Loading branch information
matthewturk authored Oct 6, 2021
2 parents 081891d + dcba01f commit 4747bf9
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.2
current_version = 0.2.3
commit = True
tag = True

Expand Down
16 changes: 16 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,21 @@ include README.rst
recursive-include tests *
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
recursive-exclude .tox *

recursive-include yt_idv *.pyx
recursive-include yt_idv *.pyd

include *.md
include *.yaml
include *.yml
include .bumpversion.cfg
include Makefile
include tox.ini
recursive-include docs *.txt
recursive-include examples *.ipynb
recursive-include examples *.py
recursive-include yt_idv *.glsl
recursive-include yt_idv *.yaml

recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = yt_idv
version = 0.2.2
version = 0.2.3
description = Interactive Volume Rendering for yt
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import numpy
from Cython.Build import cythonize
from setuptools import Extension, find_packages, setup

from Cython.Build import cythonize # isort:skip

setup(
ext_modules=cythonize("yt_idv/*.pyx"),
include_dirs=[numpy.get_include()],
Expand Down
2 changes: 1 addition & 1 deletion yt_idv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Matthew Turk"""
__email__ = "matthewturk@gmail.com"
__version__ = "0.2.2"
__version__ = "0.2.3"

import os

Expand Down

0 comments on commit 4747bf9

Please sign in to comment.