From 7ced210c8c789d7c62eeabdf4b8b11ac26f659de Mon Sep 17 00:00:00 2001 From: Nitin Madnani Date: Fri, 7 Jul 2023 19:12:00 -0400 Subject: [PATCH] Update version numbers in various places. --- conda-recipe/factor_analyzer/meta.yaml | 2 +- doc/conf.py | 6 +++--- setup.py | 3 ++- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/conda-recipe/factor_analyzer/meta.yaml b/conda-recipe/factor_analyzer/meta.yaml index 4342cb7..9adf3f5 100644 --- a/conda-recipe/factor_analyzer/meta.yaml +++ b/conda-recipe/factor_analyzer/meta.yaml @@ -1,5 +1,5 @@ {% set name = "factor_analyzer" %} -{% set version = "0.4.1" %} +{% set version = "0.5.0" %} package: name: '{{ name|lower }}' diff --git a/doc/conf.py b/doc/conf.py index 82f54d9..2e02e3f 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -64,7 +64,7 @@ # General information about the project. project = "factor_analyzer" -copyright = "2019, Jeremy Biggs" +copyright = "2023, Educational Testing Service" author = "Jeremy Biggs" # The version info for the project you're documenting, acts as replacement for @@ -72,9 +72,9 @@ # built documents. # # The short X.Y version. -version = "0.4.0" +version = "0.5.1" # The full version, including alpha/beta/rc tags. -release = "0.4.0" +release = "0.5.1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 93cc47d..708bbc9 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ def requirements(): # noqa: D103 setup( name="factor_analyzer", - version="0.4.1", + version="0.5.0", description="A Factor Analysis tool written in Python", long_description=readme(), keywords="factor analysis", @@ -43,6 +43,7 @@ def requirements(): # noqa: D103 "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ], zip_safe=True, )