File tree 3 files changed +5
-4
lines changed
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 24
24
25
25
- name : Install dependencies
26
26
run : |
27
- python -m pip install --upgrade pip setuptools
28
- pip install flake8
27
+ python -m pip install --upgrade pip
28
+ pip install flake8 setuptools
29
29
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
30
30
31
31
- name : Install Budgitree
Original file line number Diff line number Diff line change 2
2
Budgitree init.py
3
3
"""
4
4
5
- __version__ = "0.0.9 "
5
+ __version__ = "0.1.0 "
6
6
__parent_dir__ = 'budgitree'
7
7
__test_tree__ = 'data/example_tree.tree'
Original file line number Diff line number Diff line change 41
41
python_requires = ">=3.9" ,
42
42
install_requires = ["ete3 == 3.1.3" ,
43
43
"biopython == 1.84" ,
44
- "six == 1.16.0" ],
44
+ "six == 1.16.0" ,
45
+ "setuptools == 75.3.0" ],
45
46
extras_require = { # Optional
46
47
"dev" : ["pre-commit" , "pipenv" ],
47
48
"test" : ["pytest" , "pytest-cov" ],
You can’t perform that action at this time.
0 commit comments