Auto status change to "Under Review"
Show More
@@ -14,7 +14,7 b' The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).' | |||||
14 | <!-- ### Fixed --> |
|
14 | <!-- ### Fixed --> | |
15 |
|
15 | |||
16 |
|
16 | |||
17 |
## |
|
17 | ## [2.0.0rc1 - 2019-04-13] | |
18 | ### Changed |
|
18 | ### Changed | |
19 | * require Elasticsearch 6.x |
|
19 | * require Elasticsearch 6.x | |
20 | * move data structure to single document per index |
|
20 | * move data structure to single document per index |
@@ -103,8 +103,3 b' To develop appenlight frontend:' | |||||
103 | npm install |
|
103 | npm install | |
104 | grunt watch |
|
104 | grunt watch | |
105 |
|
105 | |||
106 |
|
||||
107 | Tagging release |
|
|||
108 | =============== |
|
|||
109 |
|
||||
110 | bumpversion --current-version 1.1.1 minor --verbose --tag --commit --dry-run |
|
@@ -33,9 +33,6 b' def _get_meta_var(name, data, callback_handler=None):' | |||||
33 | with open(os.path.join(here, "src", "appenlight", "__init__.py"), "r") as _meta: |
|
33 | with open(os.path.join(here, "src", "appenlight", "__init__.py"), "r") as _meta: | |
34 | _metadata = _meta.read() |
|
34 | _metadata = _meta.read() | |
35 |
|
35 | |||
36 | with open(os.path.join(here, "VERSION"), "r") as _meta_version: |
|
|||
37 | __version__ = _meta_version.read().strip() |
|
|||
38 |
|
||||
39 | __license__ = _get_meta_var("__license__", _metadata) |
|
36 | __license__ = _get_meta_var("__license__", _metadata) | |
40 | __author__ = _get_meta_var("__author__", _metadata) |
|
37 | __author__ = _get_meta_var("__author__", _metadata) | |
41 | __url__ = _get_meta_var("__url__", _metadata) |
|
38 | __url__ = _get_meta_var("__url__", _metadata) | |
@@ -45,18 +42,20 b' found_packages.append("appenlight.migrations.versions")' | |||||
45 | setup( |
|
42 | setup( | |
46 | name="appenlight", |
|
43 | name="appenlight", | |
47 | description="appenlight", |
|
44 | description="appenlight", | |
48 |
long_description=README |
|
45 | long_description=README, | |
49 | classifiers=[ |
|
46 | classifiers=[ | |
50 | "Programming Language :: Python", |
|
47 | "Programming Language :: Python", | |
51 | "Framework :: Pylons", |
|
48 | "Framework :: Pylons", | |
52 | "Topic :: Internet :: WWW/HTTP", |
|
49 | "Topic :: Internet :: WWW/HTTP", | |
53 | "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", |
|
50 | "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", | |
54 | ], |
|
51 | ], | |
55 | version=__version__, |
|
52 | version='2.0.0rc1', | |
56 | license=__license__, |
|
53 | license=__license__, | |
57 | author=__author__, |
|
54 | author=__author__, | |
58 | url=__url__, |
|
55 | url=__url__, | |
59 | keywords="web wsgi bfg pylons pyramid", |
|
56 | keywords="web wsgi bfg pylons pyramid flask django monitoring apm instrumentation appenlight", | |
|
57 | python_requires=">=3.5", | |||
|
58 | long_description_content_type="text/markdown", | |||
60 | package_dir={"": "src"}, |
|
59 | package_dir={"": "src"}, | |
61 | packages=found_packages, |
|
60 | packages=found_packages, | |
62 | include_package_data=True, |
|
61 | include_package_data=True, |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
General Comments 4
Auto status change to "Under Review"
You need to be logged in to leave comments.
Login now