Skip to content

Commit 6c40c0b

Browse files
Trying Python 3.12 upgrade
1 parent 89926e2 commit 6c40c0b

File tree

3 files changed

+51
-31
lines changed

3 files changed

+51
-31
lines changed

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ Change Log
77
----------
88

99

10+
3.1.0
11+
=====
12+
* Support Python 3.12.
13+
14+
1015
3.0.0
1116
=====
1217

poetry.lock

Lines changed: 41 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "dcicpyvcf"
3-
version = "3.0.0"
3+
version = "3.0.0.1b1" # TODO: To become 3.1.0
44
description = "Variant Call Format (VCF) parser for Python"
55
# A VCFv4.0 and 4.1 parser for Python."
66
# Online version of PyVCF documentation is available at http://pyvcf.rtfd.org/
@@ -43,6 +43,7 @@ classifiers = [
4343
'Programming Language :: Python :: 3.9',
4444
'Programming Language :: Python :: 3.10',
4545
'Programming Language :: Python :: 3.11',
46+
'Programming Language :: Python :: 3.12',
4647

4748
'Programming Language :: Python :: Implementation :: CPython',
4849
'Programming Language :: Python :: Implementation :: PyPy',
@@ -55,10 +56,11 @@ include = [
5556

5657
[tool.poetry.dependencies]
5758

58-
python = ">=3.8.0,<3.12"
59+
python = ">=3.8.0,<3.13"
5960

6061
cython = "*"
61-
pysam = ">=0.21.0"
62+
#pysam = ">=0.21.0"
63+
pysam = "^0.22.1"
6264
setuptools = "*"
6365

6466
[tool.poetry.dev-dependencies]

0 commit comments

Comments
 (0)