Skip to content

Commit

Permalink
Added version file
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeyuXuAudio committed Nov 1, 2024
1 parent 95e6204 commit a4f8c6b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
export ARCHFLAGS="-arch x86_64 -arch arm64"
fi
python -m pip install -e .
shell: bash

- name: Test with pytest
run: |
Expand Down
2 changes: 2 additions & 0 deletions deism/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# deism/version.py
__version__ = "2.0.1" # Update this for new versions
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
from distutils.command.build_ext import build_ext
from distutils.core import setup
from distutils.extension import Extension
from deism.version import __version__


class get_pybind_include(object):
Expand Down Expand Up @@ -207,7 +208,7 @@ def clean(self):

setup_kwargs = dict(
name="deism",
version=2.0,
version=__version__,
# packages=find_packages(),
packages=["deism"],
description="An image source-based method used to simulate room transfer functions for arbitrary room shapes.",
Expand Down

0 comments on commit a4f8c6b

Please sign in to comment.