File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,14 +15,14 @@ jobs:
1515 strategy :
1616 matrix :
1717 include :
18- - os : ' ubuntu-latest'
19- python-version : ' 3.7'
2018 - os : ' macos-latest'
2119 python-version : ' 3.8'
2220 - os : ' windows-latest'
2321 python-version : ' 3.9'
2422 - os : ' ubuntu-latest'
2523 python-version : ' 3.10'
24+ - os : ' ubuntu-latest'
25+ python-version : ' 3.11'
2626
2727 steps :
2828 - uses : actions/checkout@v3
3737 python -m pip install spacy
3838 python -m pip install torch
3939 python -m pip install statsmodels
40- python -m pip install typing_extensions==4.7.1
4140 - name : Run Tests
4241 run : |
4342 pytest -m 'not rsc_test and not docker' --cov --cov-report xml
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ author_email = isabel.zimmerman@posit.co
99license = MIT
1010keywords = data, mlops
1111classifiers =
12- Programming Language :: Python :: 3.7
1312 Programming Language :: Python :: 3.8
1413 Programming Language :: Python :: 3.9
1514 Programming Language :: Python :: 3.10
@@ -20,7 +19,7 @@ packages = find:
2019include_package_data = True
2120zipsafe = False
2221
23- python_requires = >=3.7
22+ python_requires = >=3.8
2423install_requires =
2524 numpy
2625 pandas
@@ -36,7 +35,6 @@ install_requires =
3635 plotly
3736 pip-tools
3837 httpx
39- importlib-metadata>=4.4 # NOTE: Remove when python_requires>=3.8
4038
4139[options.extras_require]
4240all =
5856
5957docs =
6058 quartodoc
61- griffe ==0.25.1
59+ griffe ==0.32.3
6260
6361statsmodels =
6462 statsmodels
Original file line number Diff line number Diff line change 1010
1111import vetiver # noqa
1212
13- # hack since xgboost 2.0 dropped 3.7 support
14- if sys .version_info [0 ] == 3 and sys .version_info [1 ] < 8 :
15- PREDICT_VALUE = 21.064373016357422
16- else :
17- PREDICT_VALUE = 19.963224411010742
13+ PREDICT_VALUE = 19.963224411010742
1814
1915
2016@pytest .fixture
You can’t perform that action at this time.
0 commit comments