From a421a973c8e6eb262ee598d4a88d090b465c6f5e Mon Sep 17 00:00:00 2001 From: Nitin Madnani Date: Fri, 9 Sep 2022 09:56:50 -0400 Subject: [PATCH] Update version number and conda recipe. - Also drop Python 3.7 since it's no longer on conda-forge. --- README.rst | 2 +- conda-recipe/factor_analyzer/meta.yaml | 13 +++++-------- doc/index.rst | 4 ++-- doc/introduction.rst | 2 +- setup.py | 3 +-- 5 files changed, 10 insertions(+), 14 deletions(-) diff --git a/README.rst b/README.rst index 38a8515..eadc6fd 100644 --- a/README.rst +++ b/README.rst @@ -193,7 +193,7 @@ Confirmatory factor analysis example. Requirements ------------ -- Python 3.7 or higher +- Python 3.8 or higher - ``numpy`` - ``pandas`` - ``scipy`` diff --git a/conda-recipe/factor_analyzer/meta.yaml b/conda-recipe/factor_analyzer/meta.yaml index 2b432f1..4342cb7 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.0" %} +{% set version = "0.4.1" %} package: name: '{{ name|lower }}' @@ -16,15 +16,12 @@ build: - "{{ PYTHON }} -m pip install . --no-deps -vv" requirements: - build: - - python >=3.6 + host: + - python >=3.8 - setuptools - - pandas - - scipy - - numpy - - scikit-learn + - pip run: - - python >=3.6 + - python >=3.8 - pandas - scipy - numpy diff --git a/doc/index.rst b/doc/index.rst index 413857a..2f3b08d 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -21,8 +21,8 @@ Both the EFA and CFA classes within this package are fully compatible with .. important:: - Please make sure to read the :ref:`important notes ` section if you encounter any - unexpected results. + Please make sure to read the :ref:`important notes ` + section if you encounter any unexpected results. Documentation diff --git a/doc/introduction.rst b/doc/introduction.rst index e4fdefb..5b73ab5 100644 --- a/doc/introduction.rst +++ b/doc/introduction.rst @@ -75,7 +75,7 @@ class. Requirements ------------ -- Python 3.7 or higher +- Python 3.8 or higher - ``numpy`` - ``pandas`` - ``scipy`` diff --git a/setup.py b/setup.py index 363e598..93cc47d 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ def requirements(): # noqa: D103 setup( name="factor_analyzer", - version="0.4.0", + version="0.4.1", description="A Factor Analysis tool written in Python", long_description=readme(), keywords="factor analysis", @@ -40,7 +40,6 @@ def requirements(): # noqa: D103 "Operating System :: Unix", "Operating System :: MacOS", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",