We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2929779 commit 502ecd2Copy full SHA for 502ecd2
1 file changed
.github/workflows/deprecated-python.yml
@@ -16,6 +16,8 @@ jobs:
16
fail-fast: false
17
matrix:
18
include:
19
+ - python-version: '3.7'
20
+ os: ubuntu-22.04
21
- python-version: '3.8'
22
os: ubuntu-latest
23
@@ -39,7 +41,14 @@ jobs:
39
41
grep -n "requires-python" pyproject.toml
40
42
43
- name: Install package and test dependencies
- run: python -m pip install invoke .[test]
44
+ run: python -m pip install --no-deps invoke .[test]
45
+
46
+ - name: Try to install any 3.7-compatible dependency versions
47
+ run: |
48
+ # Let pip pick the newest release that still supports th epython version
49
+ python -m pip install \
50
+ numpy pandas pyarrow graphviz tqdm platformdirs pyyaml boto3 botocore cloudpickle \
51
+ rdt sdmetrics copulas ctgan deepecho
52
53
- name: Run unit tests
54
run: invoke unit
0 commit comments