Skip to content

Commit 71781aa

Browse files
committed
release v0.3.7
1 parent 4e93aad commit 71781aa

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

fprettify/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2011,7 +2011,7 @@ def get_arg_parser(args):
20112011
parser.add_argument('-f', '--fortran', type=str, action='append', default=[],
20122012
help="Overrides default fortran extensions recognized by --recursive. Repeat this option to specify more than one extension.")
20132013
parser.add_argument('--version', action='version',
2014-
version='%(prog)s 0.3.6')
2014+
version='%(prog)s 0.3.7')
20152015
return parser
20162016

20172017
parser = get_arg_parser(arguments)

setup.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
long_description = f.read()
99

1010
setup(name='fprettify',
11-
version='0.3.6',
11+
version='0.3.7',
1212
description='auto-formatter for modern fortran source code',
1313
long_description=long_description,
1414
long_description_content_type="text/markdown",
@@ -23,17 +23,18 @@
2323
test_suite='fprettify.tests',
2424
keywords='fortran format formatting auto-formatter indent',
2525
url='https://github.com/pseewald/fprettify',
26-
download_url='https://github.com/pseewald/fprettify/archive/v0.3.6.tar.gz',
26+
download_url='https://github.com/pseewald/fprettify/archive/v0.3.7.tar.gz',
2727
classifiers=[
2828
'Development Status :: 5 - Production/Stable',
2929
'Intended Audience :: Developers',
3030
'Topic :: Software Development :: Quality Assurance',
3131
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
32-
'Programming Language :: Python :: 2',
33-
'Programming Language :: Python :: 2.7',
3432
'Programming Language :: Python :: 3',
35-
'Programming Language :: Python :: 3.4',
3633
'Programming Language :: Python :: 3.5',
34+
'Programming Language :: Python :: 3.6',
35+
'Programming Language :: Python :: 3.7',
36+
'Programming Language :: Python :: 3.8',
37+
'Programming Language :: Python :: 3.9',
3738
'Environment :: Console',
3839
'Operating System :: OS Independent',
3940
]

0 commit comments

Comments
 (0)