Skip to content

Commit

Permalink
work on version bounds, rebuild and retest
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnMount committed Sep 26, 2023
1 parent bbb3cd8 commit fec0241
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion coverage.txt
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,4 @@ pkg/vtreat/vtreat_impl.py 711 61 91%
-------------------------------------------------------------
TOTAL 1593 126 92%

================= 45 passed, 15 warnings in 710.61s (0:11:50) ==================
================= 45 passed, 15 warnings in 140.51s (0:02:20) ==================
Binary file modified pkg/dist/vtreat-1.2.9-py3-none-any.whl
Binary file not shown.
Binary file modified pkg/dist/vtreat-1.2.9.tar.gz
Binary file not shown.
12 changes: 6 additions & 6 deletions pkg/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,17 @@
url='https://github.com/WinVector/pyvtreat',
packages=setuptools.find_packages(where='.', exclude=['tests', 'Examples']),
install_requires=[
"numpy>=1.25.0",
"pandas>=2.0.0",
'scipy',
'scikit-learn'
"numpy >=1.24.0, <2",
"pandas >=2.0.0, <3",
"scipy >=1.9.9, <2",
"scikit-learn >= 1.0, <2",
],
extras_require={
'db_adapter': [
'data_algebra>=1.6.9'
'data_algebra >=1.6.9'
],
'all': [
'data_algebra>=1.6.9'
'data_algebra >=1.6.9'
]
},
platforms=['any'],
Expand Down
8 changes: 4 additions & 4 deletions pkg/vtreat.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
numpy>=1.25.0
pandas>=2.0.0
scipy
scikit-learn
numpy<2,>=1.24.0
pandas<3,>=2.0.0
scipy<2,>=1.9.9
scikit-learn<2,>=1.0

[all]
data_algebra>=1.6.9
Expand Down
1 change: 1 addition & 0 deletions rebuild.bash
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ pip uninstall -y vtreat
python3 setup.py sdist bdist_wheel
# pip install dist/vtreat-*.tar.gz
popd
pip install --no-deps -e "$(pwd)/pkg" # sym link to source files
pdoc -o docs pkg/vtreat
pytest --cov pkg/vtreat pkg/tests > coverage.txt
# pytest --cov-report term-missing --cov pkg/vtreat pkg/tests > coverage.txt
Expand Down

0 comments on commit fec0241

Please sign in to comment.