Skip to content

Commit d5df638

Browse files
sfc-gh-stakedaankit-bhatnagar167
authored andcommitted
SNOW-85243: Updated Python connector tests using Python 3.5
1 parent 202ba7f commit d5df638

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.coverage3.5rc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[xml]
2+
output=python_connector_3.5_coverage.xml

scripts/install.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ fi
3131

3232
source ./venv/bin/activate
3333
pip install numpy pendulum
34-
if [[ "$TRAVIS_PYTHON_VERSION" != "3.4" ]]; then
35-
pip install pyarrow
36-
fi
34+
pip install pyarrow
3735
pip install pytest pytest-cov pytest-rerunfailures
3836
if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]] || [[ $PYTHON_VERSION == "2.7"* ]]; then
3937
pip install mock

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,7 @@ def _get_pyarrow_lib_pattern(self, lib_name):
121121
download_url='https://www.snowflake.com/',
122122
use_2to3=False,
123123

124-
# NOTE: Python 3.4 will be dropped within one month.
125-
python_requires='>=2.7.9,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
124+
python_requires='>=2.7.9,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
126125

127126
install_requires=[
128127
'azure-common',

test/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Building and Testing Snowflake Connector for Python
44
Building
55
================================================================================
66

7-
Install Python 2.7.9 or higher, or 3.4.3 or higher. Clone the Snowflake Connector for Python repository, then run the following command to create a wheel package:
7+
Install Python 2.7.9 or higher, or 3.5.0 or higher. Clone the Snowflake Connector for Python repository, then run the following command to create a wheel package:
88

99
.. code-block:: bash
1010

0 commit comments

Comments
 (0)