Skip to content

Commit 2971c9f

Browse files
committed
0.2.4 version!
1 parent 38f06c9 commit 2971c9f

File tree

3 files changed

+26
-19
lines changed

3 files changed

+26
-19
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.pre-commit-config.yaml
12
.eggs
23
.env
34
*~

CHANGES.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
0.2.4 (2018-12-14)
2+
==================
3+
4+
see PR #61
5+
6+
- Allow to specify ordering of path_to_root
7+
18
0.2.3 (2018-06-03)
29
==================
310

@@ -13,7 +20,6 @@ see issue #56
1320

1421
- Added custom default root level. Support Django style level=0
1522

16-
1723
0.2.1 (2016-01-23)
1824
==================
1925

setup.py

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,28 @@ def read(name):
1010

1111

1212
setup(
13-
name='sqlalchemy_mptt',
14-
version='0.2.3',
15-
url='http://github.com/uralbash/sqlalchemy_mptt/',
16-
author='Svintsov Dmitry',
17-
author_email='sacrud@uralbash.ru',
18-
packages=['sqlalchemy_mptt', ],
13+
name="sqlalchemy_mptt",
14+
version="0.2.4",
15+
url="http://github.com/uralbash/sqlalchemy_mptt/",
16+
author="Svintsov Dmitry",
17+
author_email="sacrud@uralbash.ru",
18+
packages=["sqlalchemy_mptt"],
1919
include_package_data=True,
2020
zip_safe=False,
2121
test_suite="nose.collector",
2222
license="MIT",
23-
description='SQLAlchemy MPTT mixins (Nested Sets)',
24-
long_description=read('README.rst') + '\n' + read('CHANGES.rst'),
25-
install_requires=read('requirements.txt'),
26-
tests_require=read('requirements.txt') + read('requirements-test.txt'),
23+
description="SQLAlchemy MPTT mixins (Nested Sets)",
24+
long_description=read("README.rst") + "\n" + read("CHANGES.rst"),
25+
install_requires=read("requirements.txt"),
26+
tests_require=read("requirements.txt") + read("requirements-test.txt"),
2727
classifiers=[
28-
'Development Status :: 5 - Production/Stable',
29-
'Environment :: Console',
30-
'Environment :: Web Environment',
31-
'Intended Audience :: Developers',
32-
'Natural Language :: English',
33-
'Operating System :: OS Independent',
34-
'Programming Language :: Python',
28+
"Development Status :: 5 - Production/Stable",
29+
"Environment :: Console",
30+
"Environment :: Web Environment",
31+
"Intended Audience :: Developers",
32+
"Natural Language :: English",
33+
"Operating System :: OS Independent",
34+
"Programming Language :: Python",
3535
"Programming Language :: Python :: 2.6",
3636
"Programming Language :: Python :: 2.7",
3737
"Programming Language :: Python :: 3",
@@ -42,6 +42,6 @@ def read(name):
4242
"Framework :: Flask",
4343
"Topic :: Internet",
4444
"Topic :: Database",
45-
'License :: OSI Approved :: MIT License',
45+
"License :: OSI Approved :: MIT License",
4646
],
4747
)

0 commit comments

Comments
 (0)