Skip to content

Commit 9b16b98

Browse files
author
geo
committed
2.10.0 rc1
1 parent 51e6253 commit 9b16b98

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include README README.rst LICENSE
1+
include README README.rst LICENSE requirements.txt
22
recursive-exclude geonode/static/.components
33
recursive-include geonode *.css *.eot *.gif *.html *.ico *.ini *.jpg *.js *.json *.less *.md *.mo *.po *.otf *.png *.rst *.sample *.svg *.swf *.ttf *.txt *.woff *.woff2 *.xml *.xsl README
44
recursive-include geonode/contrib/geosites gunicorn nginx

geonode/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
import os
2222

23-
__version__ = (2, 10, 0, 'rc', 0)
23+
__version__ = (2, 10, 0, 'rc', 1)
2424

2525

2626
default_app_config = "geonode.apps.AppConfig"

package/debian/changelog

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
geonode (2.10.0+rc0) bionic; urgency=high
2-
* [aad19ab96] 2018-07-31 - (Alessio Fabiani ) Merge pull request #3865 from geosolutions-it/master
1+
geonode (2.10.0+rc1) bionic; urgency=high * [aad19ab96] 2018-07-31 - (Alessio Fabiani ) Merge pull request #3865 from geosolutions-it/master
32
* [dfa999fdb] 2018-07-31 - (afabiani ) - #3180 restoring angular 1.4.0
43
* [573a6a9c3] 2018-07-31 - (afabiani ) Merge branch 'master' of https://github.com/GeoNode/geonode
54
* [0403b8f32] 2018-07-31 - (Alessio Fabiani ) Merge pull request #3866 from t-book/master

package/support/geonode.local_settings

+4-4
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,10 @@ OGC_SERVER = {
137137

138138
# If you want to enable Mosaics use the following configuration
139139
UPLOADER = {
140-
# 'BACKEND': 'geonode.rest',
141-
'BACKEND': 'geonode.importer',
140+
'BACKEND': 'geonode.rest',
141+
# 'BACKEND': 'geonode.importer',
142142
'OPTIONS': {
143-
'TIME_ENABLED': True,
143+
'TIME_ENABLED': False,
144144
'MOSAIC_ENABLED': False,
145145
'GEOGIG_ENABLED': False,
146146
},
@@ -252,7 +252,7 @@ PYCSW = {
252252
}
253253
}
254254

255-
GEONODE_ROOT = os.path.dirname(geonode.__file__)
255+
GEONODE_ROOT = os.path.abspath(os.path.dirname(__file__))
256256

257257
TEMPLATE_DIRS = (
258258
'/etc/geonode/templates',

setup.py

+7
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,13 @@
4646
url='http://geonode.org',
4747
license='GPL',
4848
packages=find_packages(),
49+
package_data = {
50+
'': ['*.*'],
51+
'': ['static/*.*'],
52+
'static': ['*.*'],
53+
'': ['templates/*.*'],
54+
'templates': ['*.*'],
55+
},
4956
include_package_data=True,
5057
install_requires=REQUIREMENTS,
5158
zip_safe=False

0 commit comments

Comments
 (0)