File tree Expand file tree Collapse file tree 8 files changed +23
-12
lines changed Expand file tree Collapse file tree 8 files changed +23
-12
lines changed Original file line number Diff line number Diff line change 8
8
steps :
9
9
- uses : actions/checkout@v2
10
10
- uses : actions/setup-python@v2
11
- - uses : psf/black@21.5b1
11
+ - uses : psf/black@21.5b2
Original file line number Diff line number Diff line change 13
13
strategy :
14
14
max-parallel : 4
15
15
matrix :
16
- python-version : [3.6, 3. 7, 3.8]
16
+ python-version : [3.7, 3.8]
17
17
18
18
steps :
19
19
- uses : actions/checkout@v1
25
25
- name : Install dependencies
26
26
run : |
27
27
python -m pip install --upgrade pip
28
+ pip install wheel
28
29
pip install cython
29
30
pip install -r requirements-dev.txt
30
31
pip install "coveralls<3.0.0"
Original file line number Diff line number Diff line change 44
44
from .exceptions import DataSetException
45
45
from .widgets import *
46
46
47
+ from pypika .terms import Term
48
+
49
+
50
+ # Monkey patching PyPika's Term class to use the old hash functionality
51
+ def __hash__ (self ) -> int :
52
+ return hash (self .get_sql (with_alias = True ))
53
+
54
+
55
+ Term .__hash__ = __hash__
56
+
57
+
47
58
__version__ = "7.8.6"
Original file line number Diff line number Diff line change 8
8
-r requirements-extras-ipython.txt
9
9
10
10
# Testing / CI
11
- tox == 3.14.3
11
+ tox == 3.23.1
12
12
tox-venv == 0.4.0
13
- tox-gh-actions == 0.3 .0
13
+ tox-gh-actions == 2.5 .0
14
14
coverage == 5.1
15
15
16
16
# Utilities
@@ -22,4 +22,4 @@ sphinx==2.2.0
22
22
sphinx-rtd-theme == 0.4.3
23
23
24
24
# Formatting
25
- black == 21.5b1
25
+ black == 21.5b2
Original file line number Diff line number Diff line change 1
- snowflake-connector-python==2.3.7
1
+ snowflake-connector-python==2.4.4
Original file line number Diff line number Diff line change 1
- vertica-python==1.0.0
1
+ vertica-python==1.0.1
Original file line number Diff line number Diff line change 1
- pandas == 1.1.1
2
- pypika == 0.48.1
3
- toposort == 1.5
1
+ pandas == 1.1.5
2
+ pypika == 0.48.2
3
+ toposort == 1.6
4
4
python-dateutil == 2.8.1
Original file line number Diff line number Diff line change 1
1
[tox]
2
- envlist = py36, py37,py38
2
+ envlist = py37,py38
3
3
[testenv]
4
4
deps = -r requirements-dev.txt
5
5
commands =
6
6
coverage run
7
7
coverage xml
8
8
[gh-actions]
9
9
python =
10
- 3.6: py36
11
10
3.7: py37
12
11
3.8: py38
You can’t perform that action at this time.
0 commit comments