Add release refinements from 0.35.2 release (#8925)

* Add refinements from 0.35.2 release

* Trim whitespace from voter name if voters entered with space after comma (e.g. 'Ville, Andy')

* Reinstate deterministic deps

* Bump copyright date in NOTICE

* Fix incorrect link in README
This commit is contained in:
Ville Brofeldt
2020-02-18 07:14:31 +02:00
committed by GitHub
parent c7e2785d38
commit 3149d8ebc0
6 changed files with 71 additions and 56 deletions

View File

@@ -15,9 +15,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
from typing import List
import smtplib
import ssl
from typing import List
try:
import jinja2
@@ -39,7 +39,7 @@ PROJECT_DESCRIPTION = "Apache Superset (incubating) is a modern, enterprise-read
def string_comma_to_list(message: str) -> List[str]:
if not message:
return []
return message.split(",")
return [element.strip() for element in message.split(",")]
def send_email(