Skip to content

Commit

Permalink
Update actions, update setup.py, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Myoldmopar committed Apr 14, 2023
1 parent 3e2b53a commit 13bb39e
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v2

- name: Set up Python 3.8
uses: actions/setup-python@b55428b1882923874294fa556849718a1d7f2ca5 # v4.2.0
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0
with:
python-version: 3.8

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v2

- name: Set up Python
uses: actions/setup-python@b55428b1882923874294fa556849718a1d7f2ca5 # v4.2.0
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0
with:
python-version: 3.8

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v2
- name: Set up Python 3.8
uses: actions/setup-python@b55428b1882923874294fa556849718a1d7f2ca5 # v4.2.0
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0
with:
python-version: 3.8
- name: Install Pip Dependencies
Expand Down
2 changes: 1 addition & 1 deletion energyplus_regressions/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
NAME = 'energyplus_regressions'
VERSION = '2.0.2'
VERSION = '2.0.3'
28 changes: 23 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
long_description = i_file.read()


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

Expand All @@ -19,15 +19,13 @@
version=VERSION,
packages=find_packages(exclude=['test', 'tests', 'test.*']),
url='https://github.com/NREL/EnergyPlusRegressionTool',
license='',
author='Edwin Lee',
author_email='',
license='ModifiedBSD',
author='Edwin Lee, for NREL, for United States Department of Energy',
description='A Python 3 library for evaluating regressions between EnergyPlus builds.',
long_description=long_description,
long_description_content_type='text/markdown',
test_suite='nose.collector',
tests_require=['nose'],
keywords='energyplus',
include_package_data=True, # use /MANIFEST.in file for declaring package data
install_requires=install_requires,
entry_points={
Expand All @@ -39,4 +37,24 @@
],
},
python_requires='>=3.5',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Utilities',
],
platforms=[
'Linux (Tested on Ubuntu)', 'MacOSX', 'Windows'
],
keywords=[
'energyplus_launch', 'ep_launch',
'EnergyPlus', 'eplus', 'Energy+',
'Building Simulation', 'Whole Building Energy Simulation',
'Heat Transfer', 'HVAC', 'Modeling',
]
)

0 comments on commit 13bb39e

Please sign in to comment.