Skip to content

Commit

Permalink
Merge pull request #110 from AllenNeuralDynamics/wip/pytest
Browse files Browse the repository at this point in the history
Exclude test files from packaging
  • Loading branch information
hannalee2 authored Oct 18, 2024
2 parents b5d5306 + 1097b68 commit d13236a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion parallax/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import os

__version__ = "1.1.0"
__version__ = "1.1.1"

# allow multiple OpenMP instances
os.environ["KMP_DUPLICATE_LIB_OK"] = "True"
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
from setuptools import setup
from setuptools import setup, find_packages

if __name__ == "__main__":
setup(
name='parallax',
packages=find_packages(exclude=["tests", "tests.*"]),
entry_points={
'console_scripts': [
'parallax = parallax.__main__:main'
Expand Down

0 comments on commit d13236a

Please sign in to comment.