Skip to content

Commit

Permalink
Merge pull request #240 from capitalone/develop
Browse files Browse the repository at this point in the history
Release v0.10.4
  • Loading branch information
Faisal authored Sep 25, 2023
2 parents a9e63b4 + bcfb047 commit abcc6e1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @fdosani @NikhilJArora @ak-gupta
* @fdosani @ak-gupta @jdawang @gladysteh99 @NikhilJArora
2 changes: 1 addition & 1 deletion datacompy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
2 changes: 1 addition & 1 deletion datacompy/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]
Expand Down Expand Up @@ -111,4 +111,4 @@ upgrade = [
"numpy",
"ordered-set",
"fugue",
]
]

0 comments on commit abcc6e1

Please sign in to comment.