Skip to content

Commit

Permalink
Trying Python 3.12 upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
dmichaels-harvard committed Jun 27, 2024
1 parent 89926e2 commit 6c40c0b
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 31 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ Change Log
----------


3.1.0
=====
* Support Python 3.12.


3.0.0
=====

Expand Down
69 changes: 41 additions & 28 deletions poetry.lock

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

8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dcicpyvcf"
version = "3.0.0"
version = "3.0.0.1b1" # TODO: To become 3.1.0
description = "Variant Call Format (VCF) parser for Python"
# A VCFv4.0 and 4.1 parser for Python."
# Online version of PyVCF documentation is available at http://pyvcf.rtfd.org/
Expand Down Expand Up @@ -43,6 +43,7 @@ classifiers = [
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',

'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
Expand All @@ -55,10 +56,11 @@ include = [

[tool.poetry.dependencies]

python = ">=3.8.0,<3.12"
python = ">=3.8.0,<3.13"

cython = "*"
pysam = ">=0.21.0"
#pysam = ">=0.21.0"
pysam = "^0.22.1"
setuptools = "*"

[tool.poetry.dev-dependencies]
Expand Down

0 comments on commit 6c40c0b

Please sign in to comment.