Skip to content

Commit

Permalink
release v0.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
pseewald committed Nov 20, 2020
1 parent 4e93aad commit 71781aa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion fprettify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2011,7 +2011,7 @@ def get_arg_parser(args):
parser.add_argument('-f', '--fortran', type=str, action='append', default=[],
help="Overrides default fortran extensions recognized by --recursive. Repeat this option to specify more than one extension.")
parser.add_argument('--version', action='version',
version='%(prog)s 0.3.6')
version='%(prog)s 0.3.7')
return parser

parser = get_arg_parser(arguments)
Expand Down
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
long_description = f.read()

setup(name='fprettify',
version='0.3.6',
version='0.3.7',
description='auto-formatter for modern fortran source code',
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -23,17 +23,18 @@
test_suite='fprettify.tests',
keywords='fortran format formatting auto-formatter indent',
url='https://github.com/pseewald/fprettify',
download_url='https://github.com/pseewald/fprettify/archive/v0.3.6.tar.gz',
download_url='https://github.com/pseewald/fprettify/archive/v0.3.7.tar.gz',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Quality Assurance',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Environment :: Console',
'Operating System :: OS Independent',
]
Expand Down

0 comments on commit 71781aa

Please sign in to comment.