Skip to content

Commit

Permalink
Let the pysam requirement float; raise minimum python version to 3.7. (
Browse files Browse the repository at this point in the history
  • Loading branch information
tfenne authored Dec 3, 2022
1 parent 62268f4 commit 5e4ed7f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name: Python package

on: [push]
env:
POETRY_VERSION: 1.1
POETRY_VERSION: 1.2

jobs:
testing:
runs-on: ubuntu-latest
strategy:
matrix:
PYTHON_VERSION: [3.6]
PYTHON_VERSION: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

`pip install fgpyo`

**Requires python 3.6+**
**Requires python 3.7+**

See documentation on [fgpyo.readthedocs.org][rtd-link].

Expand Down
10 changes: 5 additions & 5 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ include = [
]

[tool.poetry.dependencies]
python = ">=3.6.1,<4.0"
python = ">=3.7.0,<4.0"
attrs = ">=19.3.0"
typing_extensions = { version = ">=3.7.4", python = "<3.8" } # Literal support
typing_inspect = { version = ">=0.3.1", python = "<3.8" } # inspecting types
sphinx = {version = "4.3.1", optional = true}
pysam = "^0.20.0"
pysam = ">=0.20.0"

[tool.poetry.extras]
docs = ["sphinx"]
Expand All @@ -44,5 +44,5 @@ pytest-cov = ">=2.8.1"
isort = ">=5.10.1"

[build-system]
requires = ["poetry>=0.12"]
requires = ["poetry>=1.2"]
build-backend = "poetry.masonry.api"

0 comments on commit 5e4ed7f

Please sign in to comment.