Skip to content

Commit

Permalink
Update version number and conda recipe.
Browse files Browse the repository at this point in the history
- Also drop Python 3.7 since it's no longer on conda-forge.
  • Loading branch information
desilinguist committed Sep 13, 2022
1 parent 14d78b5 commit a421a97
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ Confirmatory factor analysis example.
Requirements
------------

- Python 3.7 or higher
- Python 3.8 or higher
- ``numpy``
- ``pandas``
- ``scipy``
Expand Down
13 changes: 5 additions & 8 deletions conda-recipe/factor_analyzer/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "factor_analyzer" %}
{% set version = "0.4.0" %}
{% set version = "0.4.1" %}

package:
name: '{{ name|lower }}'
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <important_notes>` section if you encounter any
unexpected results.
Please make sure to read the :ref:`important notes <important_notes>`
section if you encounter any unexpected results.


Documentation
Expand Down
2 changes: 1 addition & 1 deletion doc/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class.

Requirements
------------
- Python 3.7 or higher
- Python 3.8 or higher
- ``numpy``
- ``pandas``
- ``scipy``
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit a421a97

Please sign in to comment.