Skip to content

Commit

Permalink
Update python version used
Browse files Browse the repository at this point in the history
  • Loading branch information
nickjcroucher committed Mar 13, 2024
1 parent f571b77 commit cf2d728
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 8 deletions.
9 changes: 5 additions & 4 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: gubbins_env
name: test_gubbins_env
channels:
- conda-forge
- bioconda
- defaults
- r
dependencies:
# python
- python>=3.8
- python>=3.8,<3.11
# installation
- autoconf
- automake
Expand All @@ -26,8 +26,9 @@ dependencies:
- dendropy
- biopython
- multiprocess
- numpy<=1.23.0
- numba
- llvmlite=0.41.0
- numpy>=1.25,<1.26
- numba=0.58.0
# phylogenetics
- raxml=8.2.12
- iqtree>=2.2
Expand Down
3 changes: 3 additions & 0 deletions python/gubbins/PreProcessFasta.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#!/usr/bin/env python
# encoding: utf-8

import sys
import hashlib
from Bio import AlignIO
Expand Down
3 changes: 3 additions & 0 deletions python/gubbins/ValidateFastaAlignment.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#!/usr/bin/env python
# encoding: utf-8

import os
import re
import sys
Expand Down
3 changes: 2 additions & 1 deletion python/gubbins/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#! /usr/bin/env python3
#!/usr/bin/env python
# encoding: utf-8

"""
Imports into the `gubbins` namespace all fundamental
Expand Down
2 changes: 2 additions & 0 deletions python/gubbins/common.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin/env python
# encoding: utf-8
#
# Wellcome Trust Sanger Institute
# Copyright (C) 2013 Wellcome Trust Sanger Institute
#
Expand Down
5 changes: 3 additions & 2 deletions python/gubbins/pyjar.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python3

#!/usr/bin/env python
# encoding: utf-8
#
# pyjar written by Simon Harris
# code modified from https://github.com/simonrharris/pyjar
# pyjar is free software, licensed under GPLv3.
Expand Down
2 changes: 1 addition & 1 deletion python/gubbins/run_gubbins.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python
# encoding: utf-8
#
# Wellcome Trust Sanger Institute
Expand Down
2 changes: 2 additions & 0 deletions python/gubbins/treebuilders.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin/env python
# encoding: utf-8
#
# Wellcome Trust Sanger Institute
# Copyright (C) 2013 Wellcome Trust Sanger Institute
#
Expand Down
2 changes: 2 additions & 0 deletions python/gubbins/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin/env python
# encoding: utf-8
#
# Wellcome Trust Sanger Institute
# Copyright (C) 2013 Wellcome Trust Sanger Institute
#
Expand Down

0 comments on commit cf2d728

Please sign in to comment.