Skip to content

Commit

Permalink
cudf 23.06 workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
dcolinmorgan committed Dec 31, 2023
1 parent 5635be1 commit 88ebfdd
Show file tree
Hide file tree
Showing 3 changed files with 107 additions and 107 deletions.
2 changes: 1 addition & 1 deletion cu_cat/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.07.07
0.07.09
210 changes: 105 additions & 105 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,116 +1,116 @@
[metadata]
name = cu_cat
version = file: cu_cat/VERSION.txt
description = Prepping tables for machine learning
long_description = file: README.md
license = BSD
license_files = LICENSE.txt
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering
Topic :: Software Development :: Libraries
project_urls =
Homepage = http://github.com/graphistry/cu-cat/
Source = https://github.com/graphistry/cu-cat
; [metadata]
; name = cu_cat
; version = file: cu_cat/VERSION.txt
; description = Prepping tables for machine learning
; long_description = file: README.md
; license = BSD
; license_files = LICENSE.txt
; classifiers =
; Development Status :: 5 - Production/Stable
; Environment :: Console
; Intended Audience :: Science/Research
; License :: OSI Approved :: BSD License
; Operating System :: OS Independent
; Programming Language :: Python :: 3.10
; Programming Language :: Python :: 3.11
; Topic :: Scientific/Engineering
; Topic :: Software Development :: Libraries
; project_urls =
; Homepage = http://github.com/graphistry/cu-cat/
; Source = https://github.com/graphistry/cu-cat

[options]
include_package_data = True
packages = find:
install_requires =
scikit-learn>=1.2.1
numpy>=1.23.5
scipy>=1.9.3
pandas>=1.5.3
packaging>=23.1
python_requires = >=3.10
; [options]
; include_package_data = True
; packages = find:
; install_requires =
; scikit-learn>=1.2.1
; numpy>=1.23.5
; scipy>=1.9.3
; pandas>=1.5.3
; packaging>=23.1
; python_requires = >=3.10

[options.extras_require]
dev =
pytest
pytest-cov
pytest-xdist==2.5.0
pytest-xdist[psutil]
coverage
mypy
numpydoc
flake8
openml
pre-commit
pyarrow =
pyarrow
polars =
pyarrow
polars
doc =
pydata-sphinx-theme
sphinxext-opengraph
sphinx-copybutton
matplotlib
seaborn
statsmodels
numpydoc
jupyterlite-sphinx
jupyterlite-pyodide-kernel
pyarrow
benchmarks =
numpy
pandas
matplotlib
seaborn
tqdm
thefuzz
autofj
pyarrow
loguru
min-py310 =
scikit-learn==1.2.1
numpy==1.23.5
scipy==1.9.3
pandas==1.5.3
; [options.extras_require]
; dev =
; pytest
; pytest-cov
; pytest-xdist==2.5.0
; pytest-xdist[psutil]
; coverage
; mypy
; numpydoc
; flake8
; openml
; pre-commit
; pyarrow =
; pyarrow
; polars =
; pyarrow
; polars
; doc =
; pydata-sphinx-theme
; sphinxext-opengraph
; sphinx-copybutton
; matplotlib
; seaborn
; statsmodels
; numpydoc
; jupyterlite-sphinx
; jupyterlite-pyodide-kernel
; pyarrow
; benchmarks =
; numpy
; pandas
; matplotlib
; seaborn
; tqdm
; thefuzz
; autofj
; pyarrow
; loguru
; min-py310 =
; scikit-learn==1.2.1
; numpy==1.23.5
; scipy==1.9.3
; pandas==1.5.3

[flake8]
max-line-length = 88
target-version = ['py310']
ignore =
E24,
E121,
E123,
E126,
E203,
E226,
E704,
E731,
E741,
W503,
W504
per-file-ignores =
examples/*:E402
doc/conf.py:E402
exclude =
.git,
__pycache__,
dist,
build
; [flake8]
; max-line-length = 88
; target-version = ['py310']
; ignore =
; E24,
; E121,
; E123,
; E126,
; E203,
; E226,
; E704,
; E731,
; E741,
; W503,
; W504
; per-file-ignores =
; examples/*:E402
; doc/conf.py:E402
; exclude =
; .git,
; __pycache__,
; dist,
; build

[mypy]
ignore_missing_imports = True
allow_redefinition = True
; [mypy]
; ignore_missing_imports = True
; allow_redefinition = True

[codespell]
skip = ./.git,./.mypy_cache

[egg_info]
tag_build =
tag_date = 0
; [codespell]
; skip = ./.git,./.mypy_cache

; [egg_info]
; tag_build =
; tag_date = 0


##github
[bdist_wheel]

[versioneer]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def unique_flatten_dict(d):
# if __name__ == "__main__":
setup(
name='cu-cat',
version='v0.07.07', # versioneer.get_version(),
version='v0.07.09', # versioneer.get_version(),
# cmdclass='0.7.7', # versioneer.get_cmdclass(),
packages = find_packages(),
platforms='any',
Expand Down

0 comments on commit 88ebfdd

Please sign in to comment.