Skip to content

Commit

Permalink
Bump plan tools version
Browse files Browse the repository at this point in the history
  • Loading branch information
Myoldmopar committed Apr 6, 2023
1 parent a0e3680 commit 13d25f8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ docutils # pinning this because it breaks at 0.18
wheel

# for polishing up the Pip install
PLAN-Tools==0.4
PLAN-Tools==0.41

8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import codecs
import os
from platform import system
from setuptools import setup, find_packages

from energyplus_regressions import NAME, VERSION
Expand All @@ -8,6 +9,11 @@
with codecs.open(os.path.join(this_dir, 'README.md'), encoding='utf-8') as i_file:
long_description = i_file.read()


install_requires = ['PyPubSub', 'beautifulsoup4', 'PLAN-Tools==0.41']
if system() == 'Windows':
install_requires.append('pypiwin32')

setup(
name=NAME,
version=VERSION,
Expand All @@ -23,7 +29,7 @@
tests_require=['nose'],
keywords='energyplus',
include_package_data=True, # use /MANIFEST.in file for declaring package data
install_requires=['PyPubSub', 'beautifulsoup4', 'PLAN-Tools==0.4'],
install_requires=install_requires,
entry_points={
'gui_scripts': [
'energyplus_regression_runner=energyplus_regressions.runner:main_gui',
Expand Down

0 comments on commit 13d25f8

Please sign in to comment.