Skip to content

Commit a239f1b

Browse files
author
jbiggsets
committed
updating version numbers and fixing recipe
1 parent 5ccd874 commit a239f1b

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

README.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@ Performing CFA requires users to specify in advance a model specification
9191
with the expected factor loading relationships. This can be done using
9292
the ``ModelSpecificationParser`` class.
9393

94+
Note that the ``ConfirmatoryFactorAnalyzer`` class is very experimental at this point,
95+
so use it with caution, especially if your data are highly non-normal.
96+
9497
Examples
9598
--------
9699

conda-recipe/factor_analyzer/meta.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "factor_analyzer" %}
2-
{% set version = "0.3.1" %}
2+
{% set version = "0.3.2" %}
33
{% set file_ext = "tar.gz" %}
44
{% set hash_type = "sha256" %}
55
{% set hash_value = "94ea4c7d46e846cc7174787adce47156cf58dc257905c878edc5181b4fa300ed" %}
@@ -21,14 +21,14 @@ build:
2121

2222
requirements:
2323
build:
24-
- python==3.6
24+
- python >=3.6
2525
- setuptools
2626
- pandas
2727
- scipy
2828
- numpy
2929
- scikit-learn
3030
run:
31-
- python==3.6
31+
- python >=3.6
3232
- pandas
3333
- scipy
3434
- numpy

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def requirements():
1616

1717

1818
setup(name='factor_analyzer',
19-
version='0.3.1',
19+
version='0.3.2',
2020
description='A Factor Analysis class',
2121
long_description=readme(),
2222
keywords='factor analysis',
@@ -40,5 +40,6 @@ def requirements():
4040
'Programming Language :: Python :: 3.4',
4141
'Programming Language :: Python :: 3.5',
4242
'Programming Language :: Python :: 3.6',
43+
'Programming Language :: Python :: 3.7',
4344
],
4445
zip_safe=True)

0 commit comments

Comments
 (0)