Skip to content

Commit dcc41e3

Browse files
committed
Fixed adjustedText version to avoid error, changed tests to python 3.11
1 parent 34593be commit dcc41e3

File tree

5 files changed

+17
-13
lines changed

5 files changed

+17
-13
lines changed

.github/workflows/load_test_upload.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
- uses: actions/checkout@v2
1515
with:
1616
fetch-depth: 0
17-
- name: Set up Python 3.8
17+
- name: Set up Python 3.11
1818
uses: actions/setup-python@v2
1919
with:
20-
python-version: 3.8
20+
python-version: 3.11
2121
- name: Install package
2222
run: |
2323
pip install wheel
@@ -35,10 +35,10 @@ jobs:
3535
- uses: actions/checkout@v2
3636
with:
3737
fetch-depth: 0
38-
- name: Set up Python 3.8
38+
- name: Set up Python 3.11
3939
uses: actions/setup-python@v2
4040
with:
41-
python-version: 3.8
41+
python-version: 3.11
4242
- name: Install dependencies
4343
run: |
4444
sudo apt-get clean && sudo apt-get update

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ With all dependencies
8282

8383
-`pp.find_overdispersed`, `tl.test_association`, `tl.fit`, `tl.test_fork`, `tl.activation`, `tl.test_association_covariate`, `tl.test_covariate`: Require R package mgcv interfaced via python package rpy2:
8484

85-
conda create -n scFates -c conda-forge -c r python=3.8 r-mgcv rpy2=3.4.2 -y
85+
conda create -n scFates -c conda-forge -c r python=3.11 r-mgcv rpy2=3.4.2 -y
8686
conda activate scFates
8787
pip install scFates
8888

@@ -118,10 +118,10 @@ If you have a nvidia GPU, scFates can leverage CUDA computations for speedups fo
118118

119119
`pp.filter_cells`, `pp.batch_correct`, `pp.diffusion`, `tl.tree`, `tl.cluster`
120120

121-
The latest version of rapids framework is required (at least 0.17) it is recommanded to create a new conda environment:
121+
The latest version of rapids framework is required. Create the following conda environment:
122122

123-
conda create -n scFates-gpu -c rapidsai -c nvidia -c conda-forge -c defaults \
124-
cuml=21.12 cugraph=21.12 python=3.8 cudatoolkit=11.0 -y
123+
conda create --solver=libmamba -n scFates-gpu -c rapidsai -c conda-forge -c nvidia \
124+
cuml=23.12 cugraph=23.12 python=3.10 cuda-version=11.2
125125
conda activate scFates-gpu
126126
pip install git+https://github.com/j-bac/elpigraph-python.git
127127
pip install scFates

docs/installation.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Installation
22
============
33

4-
scFates is continuously tested with python 3.7 and 3.8, it is recommended to use a Miniconda_ environment.
4+
scFates is continuously tested with python 3.11, it is recommended to use a Miniconda_ environment.
55

66
PyPI
77
----
@@ -20,7 +20,7 @@ With all dependencies
2020

2121
- :func:`scFates.pp.find_overdispersed`, :func:`scFates.tl.test_association`, :func:`scFates.tl.fit`, :func:`scFates.tl.test_fork`, :func:`scFates.tl.activation`: Require R package mgcv interfaced via python package rpy2::
2222

23-
conda create -n scFates -c conda-forge -c r python=3.8 r-mgcv rpy2 -y
23+
conda create -n scFates -c conda-forge -c r python=3.11 r-mgcv rpy2 -y
2424
conda activate scFates
2525
pip install scFates
2626

docs/release_notes.rst

+6-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,15 @@
44
Release Notes
55
=============
66

7-
Version 1.0.6 :small:`August 26, 2566/2033`
7+
Version 1.0.7 :small:`February 15, 2566/2024`
8+
--------------------------------------------
9+
Fixed adjustedText version to avoid error, changed tests to python 3.11
10+
11+
Version 1.0.6 :small:`August 26, 2566/2023`
812
-------------------------------------------
913
Fixed exception in :func:`scFates.tl.slide_cells`
1014

11-
Version 1.0.5 :small:`August 25, 2566/2033`
15+
Version 1.0.5 :small:`August 25, 2566/2023`
1216
-------------------------------------------
1317
Fix int and bool check when ordering segments in :func:`scFates.pl.trends`.
1418

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pandas<2.0
1111
statsmodels>=0.11.1
1212
matplotlib>=3.2.1
1313
plotly>=4.8.1
14-
adjustText>=0.7.3
14+
adjustText==0.7.3
1515
cycler>=0.10.0
1616
python_igraph>=0.8.2
1717
typing_extensions

0 commit comments

Comments
 (0)