Skip to content

Commit

Permalink
bumped to 0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
yaleman committed Jul 15, 2021
1 parent 7087721 commit a4a3fc0
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,5 @@ You're probably better off contributing to other packages like the dependencies
* 0.0.2 2019-10-12 Updated to include SoC upload
* 0.0.3 2019-10-12 Turns out the "defaults" aren't as default as I thought in ConfigParser. Fixed.
* 0.0.4 2019-10-12 Way more config error checking
* 0.0.5 2021-01-08 Fixed the example config "systemid" field was mistyped.
* 0.0.5 2021-01-08 Fixed the example config "systemid" field was mistyped.
* 0.0.6 2021-07-15 Didn't change the module much, added lambda function.
2 changes: 0 additions & 2 deletions buildpackages

This file was deleted.

6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="goodwe2pvoutput",
version="0.0.5",
version="0.0.6",
author="James Hodgkinson",
author_email="yaleman@ricetek.net",
description="PVOutput.org Goodwe uploader",
Expand All @@ -17,10 +17,10 @@
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
python_requires='>=3.8',
scripts=['goodwe2pvoutput/bin/goodwe2pvoutput']
)
8 changes: 8 additions & 0 deletions upload_to_pip
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
echo "Building..."

rm dist/*
pipenv run python setup.py sdist bdist_wheel


echo "Uploading"

python -m twine upload dist/*

0 comments on commit a4a3fc0

Please sign in to comment.