-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #232 from capitalone/develop
Release v0.10.3
- Loading branch information
Showing
11 changed files
with
554 additions
and
188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,6 @@ jobs: | |
- id: run-edgetest | ||
uses: fdosani/[email protected] | ||
with: | ||
edgetest-flags: '-c setup.cfg --export' | ||
edgetest-flags: '-c pyproject.toml --export' | ||
base-branch: 'develop' | ||
skip-pr: 'false' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
include README.rst | ||
include LICENSE | ||
include requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
[project] | ||
name = "datacompy" | ||
description = "Dataframe comparison in Python" | ||
readme = "README.md" | ||
authors = [ | ||
{ name="Ian Robertson" }, | ||
{ name="Dan Coates" }, | ||
{ name="Faisal Dosani", email="[email protected]" }, | ||
] | ||
maintainers = [ | ||
{ name="Faisal Dosani", email="[email protected]" } | ||
] | ||
license = {text = "Apache Software License"} | ||
dependencies = [ | ||
"pandas<=2.0.2,>=0.25.0", | ||
"numpy<=1.24.3,>=1.22.0", | ||
"ordered-set<=4.1.0,>=4.0.2", | ||
"fugue<=0.9.0,>=0.8.6", | ||
] | ||
requires-python = ">=3.8.0" | ||
classifiers = [ | ||
"Intended Audience :: Developers", | ||
"Natural Language :: English", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
] | ||
|
||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/capitalone/datacompy" | ||
Documentation = "https://capitalone.github.io/datacompy/" | ||
Repository = "https://github.com/capitalone/datacompy.git" | ||
"Bug Tracker" = "https://github.com/capitalone/datacompy/issues" | ||
"Source Code" = "https://github.com/capitalone/datacompy" | ||
|
||
[tool.setuptools] | ||
packages = ["datacompy"] | ||
zip-safe = false | ||
include-package-data = true | ||
|
||
[tool.setuptools.package-data] | ||
"*" = ["templates/*.txt"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "datacompy.__version__"} | ||
|
||
[tool.distutils.bdist_wheel] | ||
python-tag = "py3" | ||
|
||
[project.optional-dependencies] | ||
duckdb = ["fugue[duckdb]"] | ||
polars = ["fugue[polars]"] | ||
spark = ["fugue[spark]"] | ||
dask = ["fugue[dask]"] | ||
ray = ["fugue[ray]"] | ||
docs = [ | ||
"sphinx", | ||
"furo", | ||
"myst-parser", | ||
] | ||
tests = [ | ||
"pytest", | ||
"pytest-cov", | ||
"pytest-spark", | ||
"fugue[polars,duckdb,spark]", | ||
] | ||
qa = [ | ||
"pre-commit", | ||
"black", | ||
"isort", | ||
] | ||
build = [ | ||
"build", | ||
"twine", | ||
"wheel", | ||
] | ||
edgetest = [ | ||
"edgetest", | ||
"edgetest-conda", | ||
] | ||
dev = [ | ||
"datacompy[duckdb]", | ||
"datacompy[polars]", | ||
"datacompy[spark]", | ||
"datacompy[docs]", | ||
"datacompy[tests]", | ||
"datacompy[qa]", | ||
"datacompy[build]", | ||
] | ||
|
||
[isort] | ||
multi_line_output = 3 | ||
include_trailing_comma = true | ||
force_grid_wrap = 0 | ||
use_parentheses = true | ||
line_length = 88 | ||
|
||
[edgetest.envs.core] | ||
python_version = "3.9" | ||
conda_install = ["openjdk=8"] | ||
extras = ["dev"] | ||
command = "pytest tests -m 'not integration'" | ||
upgrade = [ | ||
"pandas", | ||
"numpy", | ||
"ordered-set", | ||
"fugue", | ||
] |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.