File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ awslogs==0.14.0
12
12
black==22.3.0
13
13
stopit==1.1.2
14
14
# Update tox.ini to have correct version of airflow constraints file
15
- apache-airflow==2.5.1
15
+ apache-airflow==2.6.0
16
16
apache-airflow-providers-amazon==7.2.1
17
- attrs==22 .1.0
17
+ attrs>=23 .1.0,<24
18
18
fabric==2.6.0
19
19
requests==2.27.1
20
20
sagemaker-experiments==0.1.35
@@ -23,3 +23,7 @@ pyvis==0.2.1
23
23
pandas>=1.3.5,<1.5
24
24
scikit-learn==1.0.2
25
25
cloudpickle==2.2.1
26
+ scipy==1.7.3
27
+ urllib3==1.26.8
28
+ docker>=5.0.2,<7.0.0
29
+ PyYAML==6.0
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ def read_requirements(filename):
47
47
48
48
# Declare minimal set for installation
49
49
required_packages = [
50
- "attrs>=20.3 .0,<23 " ,
50
+ "attrs>=23.1 .0,<24 " ,
51
51
"boto3>=1.26.131,<2.0" ,
52
52
"cloudpickle==2.2.1" ,
53
53
"google-pasta" ,
@@ -60,7 +60,7 @@ def read_requirements(filename):
60
60
"pandas" ,
61
61
"pathos" ,
62
62
"schema" ,
63
- "PyYAML==5.4.1 " ,
63
+ "PyYAML==6.0 " ,
64
64
"jsonschema" ,
65
65
"platformdirs" ,
66
66
"tblib==1.7.0" ,
@@ -75,7 +75,7 @@ def read_requirements(filename):
75
75
# Meta dependency groups
76
76
extras ["all" ] = [item for group in extras .values () for item in group ]
77
77
# Tests specific dependencies (do not need to be included in 'all')
78
- extras ["test" ] = (extras [ "all" ] + read_requirements ("requirements/extras/test_requirements.txt" ),)
78
+ extras ["test" ] = (read_requirements ("requirements/extras/test_requirements.txt" ),)
79
79
80
80
setup (
81
81
name = "sagemaker" ,
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ passenv =
73
73
# Can be used to specify which tests to run, e.g.: tox -- -s
74
74
commands =
75
75
python -c " import os; os.system('install-custom-pkgs --install-boto-wheels')"
76
- pip install ' apache-airflow==2.5.1 ' --constraint " https://raw.githubusercontent.com/apache/airflow/constraints-2.5.1 /constraints-3.7.txt"
76
+ pip install ' apache-airflow==2.6.0 ' --constraint " https://raw.githubusercontent.com/apache/airflow/constraints-2.6.0 /constraints-3.7.txt"
77
77
78
78
pytest --cov =sagemaker --cov-append {posargs}
79
79
{env:IGNORE_COVERAGE:} coverage report -i --fail-under =86
You can’t perform that action at this time.
0 commit comments