From 45dffcf3c4d85794ab43a1434fccafed8c4e2783 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Pe=C3=B1a?= Date: Sun, 16 Aug 2020 00:48:56 -0500 Subject: [PATCH] 2.2.2 --- HISTORY.rst | 3 ++- config.json | 11 +++++++++++ setup.py | 1 - voseq/__init__.py | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 config.json diff --git a/HISTORY.rst b/HISTORY.rst index 7bed9a1a..4ef538d9 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,7 +1,7 @@ HISTORY ------- -X.Y.Z () +2.2.2 (2020-08-16) ++++++++++++++++++ - fixed usage of django-suit for admin interface. - allow partial match to voucher code, genus, species, accession numbers, gene_codes @@ -10,6 +10,7 @@ X.Y.Z () - References to vouchers from Sequence objects will show voucher code, genus and species. - dropped support for python 3.5 +- added config.json for initial deployment. 2.2.1 (2020-06-28) ++++++++++++++++++ diff --git a/config.json b/config.json new file mode 100644 index 00000000..5716c03b --- /dev/null +++ b/config.json @@ -0,0 +1,11 @@ +{ +"SECRET_KEY": "create_a_secret_key", +"DB_USER": "postgres", +"DB_PASS": "", +"DB_NAME": "voseq", +"DB_PORT": "5432", +"DB_HOST": "localhost", +"GOOGLE_MAPS_API_KEY": "get_a_google_map_api_key", +"PHOTOS_REPOSITORY": "local", +"ELASTICSEARCH": "false" +} diff --git a/setup.py b/setup.py index 635b204d..3eeffbe9 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,6 @@ 'License :: OSI Approved :: BSD License', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', ], zip_safe=False, diff --git a/voseq/__init__.py b/voseq/__init__.py index 04188a16..f1edb192 100644 --- a/voseq/__init__.py +++ b/voseq/__init__.py @@ -1 +1 @@ -__version__ = '2.2.0' +__version__ = '2.2.2'