Skip to content

Commit

Permalink
Run on Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreRicoPSU committed Dec 26, 2022
1 parent b2ab470 commit 710d481
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ target/
.vscode/
.venv
.python-version
.python-version

#Ipython Notebook
.ipynb_checkpoints
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.7.12
3.10.3
5 changes: 5 additions & 0 deletions docs/release-history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Release History
===============

v0.12.0 (2022-12-26)
--------------------

Run on Python 3.10

v0.11.1 (2022-12-05)
--------------------

Expand Down
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tool.poetry]
name = "pandas-genomics"
version = "0.11.2"
version = "0.12.0"
description = "Pandas ExtensionDtypes and ExtensionArray for working with genomics data"
license = "BSD-3-Clause"
authors = ["John McGuigan <jrm5100@psu.edu>"]
authors = ["Andre Rico <alr6366@psu.edu>"]
readme = "README.md"
repository = "https://github.com/HallLab/pandas-genomics/"
documentation = "https://pandas-genomics.readthedocs.io/en/latest/"
Expand All @@ -16,18 +16,18 @@ classifiers = [
]

[tool.poetry.dependencies]
python = " >=3.7.1,<3.8.0"
numpy = "^1.21"
pandas = "^1.2"
python = " >=3.8.0,<3.11.0"
numpy = "^1.24"
pandas = "~1.3"
cyvcf2 = {version="^0.30", markers = "sys_platform != 'win32'"}
sphinx = {version = "^3.2.1", optional = true}
sphinx_rtd_theme = {version = "^0.5.0", optional = true}
numpydoc = {version = "^1.1.0", optional = true}
sphinx-copybutton = {version = "^0.3.0", optional = true}
ipython = {version = "^7.18.1", optional = true}
importlib-metadata = {version = "^2.0", python = "<3.8"}
statsmodels = "^0.12.2"
scipy = "^1.6"
statsmodels = "^0.13"
scipy = "^1.9"

[tool.poetry.dev-dependencies]
pytest = "^6"
Expand Down

0 comments on commit 710d481

Please sign in to comment.