From 710d481e3f7767dc4fb77115edf17bc180a7b783 Mon Sep 17 00:00:00 2001 From: Andre Rico <97684721+AndreRicoPSU@users.noreply.github.com> Date: Mon, 26 Dec 2022 15:04:10 -0500 Subject: [PATCH] Run on Python 3.10 --- .gitignore | 1 + .python-version | 2 +- docs/release-history.rst | 5 +++++ pyproject.toml | 14 +++++++------- 4 files changed, 14 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 52d8392..2ea60bc 100644 --- a/.gitignore +++ b/.gitignore @@ -80,6 +80,7 @@ target/ .vscode/ .venv .python-version +.python-version #Ipython Notebook .ipynb_checkpoints diff --git a/.python-version b/.python-version index f7e5aa8..7d4ef04 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.7.12 +3.10.3 diff --git a/docs/release-history.rst b/docs/release-history.rst index bb24954..b9e3e8a 100644 --- a/docs/release-history.rst +++ b/docs/release-history.rst @@ -2,6 +2,11 @@ Release History =============== +v0.12.0 (2022-12-26) +-------------------- + +Run on Python 3.10 + v0.11.1 (2022-12-05) -------------------- diff --git a/pyproject.toml b/pyproject.toml index 2ce42b0..bffb8f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] +authors = ["Andre Rico "] readme = "README.md" repository = "https://github.com/HallLab/pandas-genomics/" documentation = "https://pandas-genomics.readthedocs.io/en/latest/" @@ -16,9 +16,9 @@ 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} @@ -26,8 +26,8 @@ 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"