File tree 7 files changed +21
-16
lines changed
doc/source/getting_started
7 files changed +21
-16
lines changed Original file line number Diff line number Diff line change @@ -42,10 +42,10 @@ dependencies:
42
42
- pytables
43
43
- pyarrow
44
44
- pyreadstat
45
+ - python-snappy
45
46
- pyxlsb
46
47
- s3fs
47
48
- scipy
48
- - snappy
49
49
- sqlalchemy
50
50
- tabulate
51
51
- xarray
Original file line number Diff line number Diff line change @@ -38,14 +38,14 @@ dependencies:
38
38
- odfpy
39
39
- pandas-gbq
40
40
- psycopg2
41
- - pymysql
42
- - pytables
43
41
- pyarrow
42
+ - pymysql
44
43
- pyreadstat
44
+ - pytables
45
+ - python-snappy
45
46
- pyxlsb
46
47
- s3fs
47
48
- scipy
48
- - snappy
49
49
- sqlalchemy
50
50
- tabulate
51
51
- xarray
Original file line number Diff line number Diff line change @@ -40,14 +40,14 @@ dependencies:
40
40
- openpyxl=3.0.3
41
41
- pandas-gbq=0.14.0
42
42
- psycopg2=2.8.4
43
- - pymysql=0.10.1
44
- - pytables=3.6.1
45
43
- pyarrow=1.0.1
44
+ - pymysql=0.10.1
46
45
- pyreadstat=1.1.0
46
+ - pytables=3.6.1
47
+ - python-snappy=0.6.0
47
48
- pyxlsb=1.0.6
48
49
- s3fs=0.4.0
49
50
- scipy=1.4.1
50
- - snappy=1.1.8
51
51
- sqlalchemy=1.4.0
52
52
- tabulate=0.8.7
53
53
- xarray=0.15.1
Original file line number Diff line number Diff line change @@ -37,14 +37,14 @@ dependencies:
37
37
- odfpy
38
38
- pandas-gbq
39
39
- psycopg2
40
- - pymysql
41
- - pytables
42
40
- pyarrow
41
+ - pymysql
43
42
- pyreadstat
43
+ - pytables
44
+ - python-snappy
44
45
- pyxlsb
45
46
- s3fs
46
47
- scipy
47
- - snappy
48
48
- sqlalchemy
49
49
- tabulate
50
50
- xarray
Original file line number Diff line number Diff line change @@ -38,13 +38,13 @@ dependencies:
38
38
- pandas-gbq
39
39
- psycopg2
40
40
- pymysql
41
- - pytables
42
41
- pyarrow
43
42
- pyreadstat
43
+ - pytables
44
+ - python-snappy
44
45
- pyxlsb
45
46
- s3fs
46
47
- scipy
47
- - snappy
48
48
- sqlalchemy
49
49
- tabulate
50
50
- xarray
Original file line number Diff line number Diff line change @@ -411,6 +411,6 @@ Compression
411
411
Dependency Minimum Version Notes
412
412
========================= ================== =============================================================
413
413
brotli 0.7.0 Brotli compression
414
- snappy 1.1.8 Snappy compression
414
+ python- snappy 0.6.0 Snappy compression
415
415
Zstandard 0.15.2 Zstandard compression
416
416
========================= ================== =============================================================
Original file line number Diff line number Diff line change 35
35
"pyxlsb" : "1.0.6" ,
36
36
"s3fs" : "0.4.0" ,
37
37
"scipy" : "1.4.1" ,
38
- "snappy" : "1.1.8 " ,
38
+ "snappy" : "0.6.0 " ,
39
39
"sqlalchemy" : "1.4.0" ,
40
40
"tables" : "3.6.1" ,
41
41
"tabulate" : "0.8.7" ,
53
53
"bs4" : "beautifulsoup4" ,
54
54
"bottleneck" : "Bottleneck" ,
55
55
"brotli" : "brotlipy" ,
56
+ "jinja2" : "Jinja2" ,
56
57
"lxml.etree" : "lxml" ,
57
58
"odf" : "odfpy" ,
58
59
"pandas_gbq" : "pandas-gbq" ,
59
- "tables " : "pytables " ,
60
+ "snappy " : "python-snappy " ,
60
61
"sqlalchemy" : "SQLAlchemy" ,
61
- "jinja2 " : "Jinja2 " ,
62
+ "tables " : "pytables " ,
62
63
}
63
64
64
65
@@ -72,6 +73,10 @@ def get_version(module: types.ModuleType) -> str:
72
73
if module .__name__ == "brotli" :
73
74
# brotli doesn't contain attributes to confirm it's version
74
75
return ""
76
+ if module .__name__ == "snappy" :
77
+ # snappy doesn't contain attributes to confirm it's version
78
+ # See https://github.com/andrix/python-snappy/pull/119
79
+ return ""
75
80
raise ImportError (f"Can't determine version for { module .__name__ } " )
76
81
if module .__name__ == "psycopg2" :
77
82
# psycopg2 appends " (dt dec pq3 ext lo64)" to it's version
You can’t perform that action at this time.
0 commit comments