Skip to content

Commit

Permalink
Merge d687c93 into 5650e77
Browse files Browse the repository at this point in the history
  • Loading branch information
GouMinghao committed Jan 28, 2021
2 parents 5650e77 + d687c93 commit 3c04e8f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion pscore_match/match.py
Expand Up @@ -397,7 +397,7 @@ def whichMatched(matches, data, show_duplicates = True):
while j>0:
indices.append(i)
j -= 1
return data.ix[indices]
return data.iloc[indices]
else:
dat2 = data.copy()
dat2['weights'] = matches.weights
Expand Down
18 changes: 9 additions & 9 deletions requirements.txt
@@ -1,9 +1,9 @@
numpy==1.14.1
scipy==0.17.1
nose==1.3.7
coverage==4.2
coveralls==1.1
pandas==0.20.1
statsmodels==0.8.0
matplotlib==1.5.1
plotly==2.0.11
numpy
scipy
nose
coverage
coveralls
pandas
statsmodels
matplotlib
plotly
3 changes: 3 additions & 0 deletions setup.py
Expand Up @@ -71,6 +71,9 @@ def write_version_py(filename='pscore_match/version.py'):
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
Expand Down

0 comments on commit 3c04e8f

Please sign in to comment.