Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Davide-sd committed Feb 11, 2022
1 parent 5191fe9 commit 1bd3b9f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
10 changes: 10 additions & 0 deletions doc/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Changelog
---------

v1.0.6
======

* added `to_dict` keyword argument to solvers.
* Improved doctests
* Added latex equations to ReadTheDocs documentation
* Added examples to ReadTheDocs documentation
* Added linkcode resolve to documentation


v1.0.5
======

Expand Down
2 changes: 1 addition & 1 deletion pygasflow/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.5"
__version__ = "1.0.6"
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
from setuptools import setup
import os

def readme():
with open('README.md') as f:
return f.read()

here = os.path.dirname(os.path.abspath(__file__))
version_ns = {}
with open(os.path.join(here, 'pygasflow', '_version.py')) as f:
exec (f.read(), {}, version_ns)

def readme():
with open('README.md') as f:
return f.read()

setup(
name = 'pygasflow',
version = version_ns["__version__"],
description = 'Ideal Gasdynamics utilities for Python 3.6+',
long_description = readme(),
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.9',
"Topic :: Scientific/Engineering",
Expand Down

0 comments on commit 1bd3b9f

Please sign in to comment.