diff --git a/CODEOWNERS b/CODEOWNERS index a109fdd9..53ed855d 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1 +1 @@ -* @fdosani @NikhilJArora @ak-gupta +* @fdosani @ak-gupta @jdawang @gladysteh99 @NikhilJArora diff --git a/datacompy/__init__.py b/datacompy/__init__.py index 05a6b0cd..3ddb0b77 100644 --- a/datacompy/__init__.py +++ b/datacompy/__init__.py @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.10.3" +__version__ = "0.10.4" from datacompy.core import * from datacompy.fugue import ( diff --git a/datacompy/core.py b/datacompy/core.py index fe594c9f..9213c0e7 100644 --- a/datacompy/core.py +++ b/datacompy/core.py @@ -303,7 +303,7 @@ def _dataframe_merge(self, ignore_spaces): LOG.debug("Selecting intersecting rows") self.intersect_rows = outer_join[outer_join["_merge"] == "both"].copy() LOG.info( - "Number of rows in df1 and df2 (not necessarily equal): {len(self.intersect_rows)}" + f"Number of rows in df1 and df2 (not necessarily equal): {len(self.intersect_rows)}" ) def _intersect_compare(self, ignore_spaces, ignore_case): diff --git a/pyproject.toml b/pyproject.toml index ac8d2e73..0b68eb38 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ maintainers = [ license = {text = "Apache Software License"} dependencies = [ "pandas<=2.0.2,>=0.25.0", - "numpy<=1.24.3,>=1.22.0", + "numpy<=1.26.0,>=1.22.0", "ordered-set<=4.1.0,>=4.0.2", "fugue<=0.9.0,>=0.8.6", ] @@ -111,4 +111,4 @@ upgrade = [ "numpy", "ordered-set", "fugue", -] \ No newline at end of file +]