Skip to content

Commit

Permalink
v0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
asistradition committed Aug 15, 2023
1 parent 16361c3 commit 6ae1ed2
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
11 changes: 11 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Change Log
==========

Inferelator v0.6.3 `August 15, 2023`
----------------------------------------

New Functionality:

- Accepts h5ad objects directly into the constructor

Bug Fixes:

- Fixed several deprecated arguments in dependencies

Inferelator v0.6.2 `May 8, 2023`
----------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = 'Chris Jackson'

# The full version, including alpha/beta/rc tags
release = 'v0.6.2'
release = 'v0.6.3'


# -- General configuration ---------------------------------------------------
Expand Down
14 changes: 9 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
from setuptools import setup, find_packages

# Current Inferelator Version Number
version = "0.6.2"

version = "0.6.3"

# Description from README.md
base_dir = os.path.dirname(os.path.abspath(__file__))
long_description = "\n\n".join([open(os.path.join(base_dir, "README.md"), "r").read()])
long_description = "\n\n".join(
[open(os.path.join(base_dir, "README.md"), "r").read()]
)

# Required packages
requires = [
Expand All @@ -33,10 +34,13 @@
author_email="[email protected]",
maintainer="Chris Jackson",
maintainer_email="[email protected]",
packages=find_packages(include=["inferelator", "inferelator.*"], exclude=["tests", "*.tests"]),
packages=find_packages(
include=["inferelator", "inferelator.*"],
exclude=["tests", "*.tests"]
),
zip_safe=False,
install_requires=requires,
python_requires=">=3.5",
python_requires=">=3.8",
tests_require=["coverage", "pytest", "bio-test-artifacts", "tables"],
classifiers=[
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit 6ae1ed2

Please sign in to comment.