Skip to content

Commit bd18865

Browse files
SNOW-560944 fix python_requires tag from setup.cfg (#1082)
1 parent 9a454f6 commit bd18865

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

DESCRIPTION.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-conne
1010

1111

1212

13+
- v2.7.6(March 17,2022)
14+
15+
- Fixed missing python_requires tag in setup.cfg
16+
1317
- v2.7.5(March 17,2022)
1418

1519
- Added an option for partners to inject their name through an environmental variable (SF_PARTNER)
@@ -18,7 +22,6 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-conne
1822
- Exported a type definition for SnowflakeConnection
1923
- Fixed a bug where final Arrow table would contain duplicate index numbers when using fetch_pandas_all
2024

21-
2225
- v2.7.4(February 05,2022)
2326

2427
- Add Geography Types

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ project_urls =
3737
Source=https://github.com/snowflakedb/snowflake-connector-python
3838
Issues=https://github.com/snowflakedb/snowflake-connector-python/issues
3939
Changelog=https://github.com/snowflakedb/snowflake-connector-python/blob/master/DESCRIPTION.md
40-
python_requires = >=3.7
4140

4241
[options]
42+
python_requires = >=3.7
4343
packages = find_namespace:
4444
install_requires =
4545
asn1crypto>0.24.0,<2.0.0

src/snowflake/connector/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Update this for the versions
22
# Don't change the forth version number from None
3-
VERSION = (2, 7, 5, None)
3+
VERSION = (2, 7, 6, None)

0 commit comments

Comments
 (0)