Skip to content

Commit

Permalink
Fix - Fixing dependencies, prepared new version
Browse files Browse the repository at this point in the history
  • Loading branch information
davidusb-geek committed Jan 27, 2023
1 parent 8f03f84 commit fa8d83c
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 11 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [0.3.24] - 2023-01-27
### Fix
- Fixed dependencies, rolled back to older fixed Numpy and Pandas versions.

## [0.3.23] - 2023-01-26
### Fix
- Fixed missing integration of additional `set_nocharge_from_grid` in the web server.
Expand Down Expand Up @@ -303,6 +307,7 @@
[0.3.21]: https://github.com/davidusb-geek/emhass/releases/tag/v0.3.21
[0.3.22]: https://github.com/davidusb-geek/emhass/releases/tag/v0.3.22
[0.3.23]: https://github.com/davidusb-geek/emhass/releases/tag/v0.3.23
[0.3.24]: https://github.com/davidusb-geek/emhass/releases/tag/v0.3.24

# Notes
All notable changes to this project will be documented in this file.
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'David HERNANDEZ'

# The full version, including alpha/beta/rc tags
release = '0.3.23'
release = '0.3.24'

# -- General configuration ---------------------------------------------------

Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
numpy>=1.20.1
pandas>=1.2.3
numpy==1.20.1
pandas==1.2.3
pvlib>=0.9.0
protobuf>=3.0.0
siphon>=0.9
Expand All @@ -9,4 +9,4 @@ beautifulsoup4>=4.9.3
pulp>=2.4
pyyaml>=5.4.1
netcdf4>=1.5.3
tables>=3.6.1
tables==3.6.1
6 changes: 3 additions & 3 deletions requirements_webserver.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
numpy>=1.20.1
pandas>=1.2.3
numpy==1.20.1
pandas==1.2.3
pvlib>=0.9.0
protobuf>=3.0.0
siphon>=0.9
Expand All @@ -9,7 +9,7 @@ beautifulsoup4>=4.9.3
pulp>=2.4
pyyaml>=5.4.1
netcdf4>=1.5.3
tables>=3.6.1
tables==3.6.1
flask>=2.0.3
waitress>=2.1.1
plotly>=5.6.0
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setup(
name='emhass', # Required
version='0.3.23', # Required
version='0.3.24', # Required
description='An Energy Management System for Home Assistant', # Optional
long_description=long_description, # Optional
long_description_content_type='text/markdown', # Optional (see note above)
Expand All @@ -43,8 +43,8 @@
packages=find_packages(where='src'), # Required
python_requires='>=3.8, <3.10',
install_requires=[
'numpy>=1.20.1',
'pandas>=1.2.3',
'numpy==1.20.1',
'pandas==1.2.3',
'pvlib>=0.8.1',
'protobuf>=3.0.0',
'siphon>=0.9',
Expand All @@ -54,7 +54,7 @@
'pulp>=2.4',
'pyyaml>=5.4.1',
'netcdf4>=1.5.3',
'tables>=3.6.1',
'tables==3.6.1',
], # Optional
entry_points={ # Optional
'console_scripts': [
Expand Down

0 comments on commit fa8d83c

Please sign in to comment.