Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [macos-13, ubuntu-latest] #macos-latest/macos-14 is M1 - some deps fail it due to not having M1 build (MMSeqs2)
python-version: ["3.8", "3.9"]
python-version: ["3.9", "3.12"]

steps:
- uses: "actions/checkout@v3"
Expand Down Expand Up @@ -55,8 +55,4 @@ jobs:
export TERM=linux
unicycler --version
just test-ci
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
use_node: true

2 changes: 1 addition & 1 deletion build/environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ dependencies:
- dnaapler >=0.4.0
- just
- poetry
- python >=3.8,<3.10
- python >=3.8,<3.14
- ripgrep
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "plassembler"
version = "1.7.1" # change VERSION too
version = "1.8.0" # change VERSION too
description = "Quickly and accurately assemble plasmids in hybrid sequenced bacterial isolates"
authors = ["George Bouras <george.bouras@adelaide.edu.au>"]
license = "MIT"
Expand All @@ -16,7 +16,7 @@ include = [
plassembler = 'plassembler:main'

[tool.poetry.dependencies]
python = ">=3.8,<3.10"
python = ">=3.8,<3.14"
click = ">=8.0.0"
loguru = ">=0.5.3"
pyyaml = ">=6.0"
Expand Down
2 changes: 1 addition & 1 deletion src/plassembler/utils/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.1
1.8.0
Loading