Skip to content

Commit 68ba719

Browse files
isrgomeznmariz
authored andcommitted
BUG32039427: Remove python 3.4 support in MSI packaging
This patch removes leftovers in MSI packaging files to support Python 3.4
1 parent 3467a0d commit 68ba719

File tree

5 files changed

+7
-314
lines changed

5 files changed

+7
-314
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ v8.0.24
1717
- WL#14027: Add support for Python 3.9
1818
- BUG#32435181: Add support for Django 3.2
1919
- BUG#32162928: Change user command fails on pure python implementation
20+
- BUG#32039427: Remove python 3.4 support in MSI packaging
2021
- BUG#32029891: Add context manager support for pooled connections
2122
- BUG#31490101: Fix wrong cast of Python unicode to std::string
2223
- BUG#30416704: Binary columns returned as strings

cpydist/bdist_msi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020, Oracle and/or its affiliates.
1+
# Copyright (c) 2020, 2021, Oracle and/or its affiliates.
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License, version 2.0, as
@@ -85,7 +85,7 @@ class DistMSI(BaseCommand):
8585
_connc_lib = None
8686
_dist_path = {}
8787
_fix_txt_files = {}
88-
_supported_versions = ["2.7", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9"]
88+
_supported_versions = ["3.6", "3.7", "3.8", "3.9"]
8989
_with_cext = False
9090
_wxs = None
9191

cpydist/data/msi/PY34.wxs

Lines changed: 0 additions & 227 deletions
This file was deleted.

0 commit comments

Comments
 (0)