Skip to content

Commit ee5d7a1

Browse files
committed
#17 Changing Np Version
I explore if the package works with an updated version of numpy. It worked without any problem
1 parent 8d26f34 commit ee5d7a1

File tree

6 files changed

+46
-1
lines changed

6 files changed

+46
-1
lines changed

drdid.egg-info/PKG-INFO

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
Metadata-Version: 2.4
2+
Name: drdid
3+
Version: 1.1.5
4+
Summary: Double Robust Difference in Difference y python
5+
Home-page: https://github.com/d2cml-ai/drdid
6+
Author: Jhon Flores
7+
Author-email: fr.jhonk@gmail.com
8+
License: MIT
9+
License-File: LICENSE
10+
Requires-Dist: pandas
11+
Requires-Dist: numpy
12+
Requires-Dist: statsmodels
13+
Dynamic: author
14+
Dynamic: author-email
15+
Dynamic: description
16+
Dynamic: home-page
17+
Dynamic: license
18+
Dynamic: license-file
19+
Dynamic: requires-dist
20+
Dynamic: summary
21+
22+
23+
Implementation of drdid for Python, R-like syntax with return destructuring using optimized Python code.
24+
25+
See the original [R package](https://github.com/pedrohcgs/DRDID/tree/master)
26+

drdid.egg-info/SOURCES.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
LICENSE
2+
README.md
3+
setup.py
4+
drdid/__init__.py
5+
drdid/_version_.py
6+
drdid/drdid.py
7+
drdid/ipwd_did.py
8+
drdid/reg_did.py
9+
drdid/utils.py
10+
drdid.egg-info/PKG-INFO
11+
drdid.egg-info/SOURCES.txt
12+
drdid.egg-info/dependency_links.txt
13+
drdid.egg-info/requires.txt
14+
drdid.egg-info/top_level.txt
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

drdid.egg-info/requires.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pandas
2+
numpy
3+
statsmodels

drdid.egg-info/top_level.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
drdid

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
packages=['drdid'],
1414
install_requires=[
1515
'pandas',
16-
'numpy<=1.24.3',
16+
'numpy',
1717
'statsmodels'
1818
],
1919
long_description='''

0 commit comments

Comments
 (0)