Skip to content

Commit

Permalink
remove python 3.10, try lxml hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
ktmeaton committed Jan 13, 2022
1 parent f892e9b commit 9087056
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.7, 3.8, 3.9, "3.10.1"]
python-version: [3.7, 3.8, 3.9]

steps:
- name: Checkout Repository
Expand All @@ -54,7 +54,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.7, 3.8, 3.9, "3.10.1"]
python-version: [3.7, 3.8, 3.9]

steps:
- name: Checkout Repository
Expand All @@ -79,7 +79,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.7, 3.8, 3.9, "3.10.1"]
python-version: [3.7, 3.8, 3.9]

steps:
- name: Checkout Repository
Expand Down
13 changes: 10 additions & 3 deletions .github/workflows/example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.7, 3.8, 3.9, "3.10.1"]
python-version: [3.7, 3.8, 3.9]
steps:

- name: Checkout Repository
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.7, 3.8, 3.9, "3.10"]
python-version: [3.7, 3.8, 3.9]

steps:
- name: Checkout Repository
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.7, 3.8, 3.9, "3.10.1"]
python-version: [3.7, 3.8, 3.9]

steps:
- name: Checkout Repository
Expand All @@ -117,6 +117,13 @@ jobs:
conda activate ncbimeta
NCBImeta --version
- name: lxml Hotfix
shell: bash -l {0}
run: |
conda activate ncbimeta
pip uninstall lxml
pip install lxml
- name: Quick Start Example
shell: bash -l {0}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.7, 3.8, 3.9, "3.10.1"]
python-version: [3.7, 3.8, 3.9]

steps:

Expand Down
9 changes: 3 additions & 6 deletions environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@ channels:
- anaconda
- defaults
dependencies:
- python=3.8
- python>=3.7,<3.10
- pip
- anaconda::make
- anaconda::gcc_impl_linux-64
- anaconda::gcc_linux-64
- anaconda::gxx_linux-64
- ncbimeta
- pip:
- ncbimeta
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"Efficient and comprehensive metadata acquisition "
"from the NCBI databases (includes SRA)."
),
python_requires=">=3.7,<=3.10.1",
python_requires=">=3.7,<3.10",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 9087056

Please sign in to comment.