Skip to content

Commit

Permalink
release pandapower 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lthurner committed Mar 28, 2019
1 parent 1720723 commit 7678010
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 28 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Change Log
=============

develop
[2.0.1]- 2019-03-28
----------------------
- [FIXED] bug in short-circuit impedance of gens
- [ADDED] use estimation of rdss_pu defined in IEC 60909 of gens if not defined
Expand Down
5 changes: 2 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
include LICENSE AUTHORS README.rst requirements.txt CHANGELOG.rst
include LICENSE AUTHORS README.rst requirements.txt CHANGELOG.rst .travis.yml
global-include *.p
global-include *.mat
global-include *.json
global-include *.jl

global-include *.jl
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
:target: https://pypi.python.org/pypi/pandapower
:alt: PyPI

.. image:: https://www.pandapower.org/images/home/shield_python_versions.svg
.. image:: https://img.shields.io/pypi/pyversions/pandapower.svg
:target: https://pypi.python.org/pypi/pandapower
:alt: PyPI
:alt: versions

.. image:: https://readthedocs.org/projects/pandapower/badge/
:target: http://pandapower.readthedocs.io/
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
# The short X.Y version.
version = "2.0"
# The full version, including alpha/beta/rc tags.
release = "2.0.0"
release = "2.0.1"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pandapower/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.0.0"
__version__ = "2.0.1"

import os
pp_dir = os.path.dirname(os.path.realpath(__file__))
Expand Down
40 changes: 20 additions & 20 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,31 @@
# Copyright (c) 2016-2019 by University of Kassel and Fraunhofer Institute for Energy Economics
# and Energy System Technology (IEE), Kassel. All rights reserved.



from setuptools import setup, find_packages
import re

with open('README.rst', 'rb') as f:
install = f.read().decode('utf-8')

with open('CHANGELOG.rst', 'rb') as f:
changelog = f.read().decode('utf-8')

classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3']
with open('.travis.yml', 'rb') as f:
lines = f.read().decode('utf-8')
for version in re.findall('python: 3.[0-9]', lines):
classifiers.append('Programming Language :: Python :: 3.%s'%version[-1])

long_description = '\n\n'.join((install, changelog))

setup(
Expand All @@ -32,21 +48,5 @@
"docs": ["numpydoc", "sphinx", "sphinx_rtd_theme"]},
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
],
)
classifiers = classifiers
)

0 comments on commit 7678010

Please sign in to comment.