Skip to content

Commit 8c06f5f

Browse files
committed
v0.3.0
1 parent 82a5e63 commit 8c06f5f

5 files changed

Lines changed: 6 additions & 10 deletions

File tree

src/CausalEGM.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: CausalEGM
3-
Version: 0.2.7
3+
Version: 0.2.9
44
Summary: CausalEGM: a general causal inference framework by encoding generative modeling
55
Home-page: https://github.com/SUwonglab/CausalEGM
66
Author: Qiao Liu
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
tensorflow-gpu==2.8.0
2-
tensorflow-determinism==0.3.0
3-
protobuf==3.20.0
1+
tensorflow==2.8.0
42
scikit-learn
53
pandas
64
python-dateutil

src/CausalEGM/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '0.2.7'
1+
__version__ = '0.2.9'
22
from .causalEGM import CausalEGM
33
from .util import Base_sampler, Semi_acic_sampler, Sim_Hirano_Imbens_sampler, Sim_Sun_sampler, Sim_Colangelo_sampler, Semi_Twins_sampler
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '0.2.7'
1+
__version__ = '0.2.9'
22
from .causalEGM import CausalEGM
33
from .util import Base_sampler, Semi_acic_sampler, Sim_Hirano_Imbens_sampler, Sim_Sun_sampler, Sim_Colangelo_sampler, Semi_Twins_sampler

src/setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setuptools.setup(
44
name="CausalEGM",
5-
version="0.2.7",
5+
version="0.2.9",
66
author="Qiao Liu",
77
author_email="liuqiao@stanford.edu",
88
description="CausalEGM: a general causal inference framework by encoding generative modeling",
@@ -11,9 +11,7 @@
1111
url="https://github.com/SUwonglab/CausalEGM",
1212
packages=setuptools.find_packages(),
1313
install_requires=[
14-
'tensorflow-gpu==2.8.0',
15-
'tensorflow-determinism==0.3.0',
16-
'protobuf==3.20.0',
14+
'tensorflow==2.8.0',
1715
'scikit-learn',
1816
'pandas',
1917
'python-dateutil'

0 commit comments

Comments
 (0)