Skip to content

Commit

Permalink
pip prod(deps): update pandas requirement from <1.5.0,>=1.0.3 to >=1.…
Browse files Browse the repository at this point in the history
…0.3,<2.1.0 (#264)

* pip prod(deps): update pandas requirement

Updates the requirements on [pandas](https://github.com/pandas-dev/pandas) to permit the latest version.
- [Release notes](https://github.com/pandas-dev/pandas/releases)
- [Commits](pandas-dev/pandas@v1.0.3...v2.0.0)

---
updated-dependencies:
- dependency-name: pandas
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update _preprocessing.py

* update rpy2 in tests

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Zewen Kelvin Tuong <z.tuong@uq.edu.au>
  • Loading branch information
dependabot[bot] and zktuong committed Apr 19, 2023
1 parent 1a0f404 commit ca02c66
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion container/environment.yml
Expand Up @@ -20,4 +20,4 @@ dependencies:
- pip:
- scanpy>=1.7.0
- sc-dandelion>=0.1.0
- rpy2==3.4.2
- rpy2>=3.4.2
2 changes: 1 addition & 1 deletion container/environment_dev.yml
Expand Up @@ -20,4 +20,4 @@ dependencies:
- pip:
- scanpy>=1.7.0
- git+https://www.github.com/zktuong/dandelion.git
- rpy2==3.4.2
- rpy2>=3.4.2
2 changes: 1 addition & 1 deletion container/environment_test.yml
Expand Up @@ -20,5 +20,5 @@ dependencies:
- pip:
- matplotlib<=3.5.3
- scanpy>=1.7.0
- rpy2==3.4.2
- rpy2>=3.4.2
- palantir
2 changes: 1 addition & 1 deletion dandelion/preprocessing/_preprocessing.py
Expand Up @@ -6479,7 +6479,7 @@ def multimapper(filename: str) -> pd.DataFrame:
df["j_support"] < 1e-3, :
] # maybe not needing to filter if j_support has already been filtered
mapped = pd.DataFrame(
index=set(df_new["sequence_id"]),
index=list(set(df_new["sequence_id"])),
columns=[
"multimappers",
"multiplicity",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Expand Up @@ -2,7 +2,7 @@ pip
airr
setuptools_scm[toml]>=6.0
numpy>=1.18.4
pandas>=1.0.3,<1.5.0
pandas>=1.0.3,<2.1.0
changeo>=1.0.0
anndata>=0.7.1
scanpy>=1.4.6
Expand Down

0 comments on commit ca02c66

Please sign in to comment.