Skip to content

Commit 4ed1cb7

Browse files
authored
+ remove regex, will use built-in re (#122)
+ update version
1 parent 26d18f0 commit 4ed1cb7

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

oreum_core/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"""Core tools for use on projects by Oreum Industries"""
1616
import logging
1717

18-
__version__ = "0.9.3"
18+
__version__ = "0.9.6"
1919

2020
# logger goes to null handler by default
2121
# packages that import oreum_core can override this and direct elsewhere

oreum_core/eda/plot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
# eda.plot.py
1616
"""EDA Plotting"""
1717
import logging
18+
import re
1819
from typing import Literal
1920

2021
import matplotlib.pyplot as plt
2122
import numpy as np
2223
import pandas as pd
23-
import regex as re
2424
import seaborn as sns
2525
from matplotlib import figure, gridspec, lines, ticker
2626
from scipy import integrate, stats

oreum_core/model_pymc/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
# model.base.py
1616
"""Base Model Class"""
1717
import logging
18+
import re
1819

1920
import arviz as az
2021
import pymc as pm
21-
import regex as re
2222
import xarray as xr
2323
from pymc.testing import assert_no_rvs
2424

pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ dependencies = [
3434
"matplotlib-inline>=0.1.7", # v0.1.7 seems okay
3535
"pandas[excel,parquet,plot]>=2.2.0", # brings many deps see DEPS NOTE
3636
"patsy>=0.5.6", # TODO consider using formulae instead
37-
"regex",
3837
"scikit-learn>=1.4.0",
3938
"seaborn==0.12.2", # 0.13 brings many breaking changes to avoid right now
4039
"statsmodels>=0.14.0",

0 commit comments

Comments
 (0)