Skip to content

Commit

Permalink
Merge pull request #50 from EducationalTestingService/release/0.3.2
Browse files Browse the repository at this point in the history
Release/0.3.2
  • Loading branch information
jbiggsets authored Nov 22, 2019
2 parents 5ccd874 + 4be8819 commit 2d49dc7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ Performing CFA requires users to specify in advance a model specification
with the expected factor loading relationships. This can be done using
the ``ModelSpecificationParser`` class.

Note that the ``ConfirmatoryFactorAnalyzer`` class is very experimental at this point,
so use it with caution, especially if your data are highly non-normal.

Examples
--------

Expand Down
11 changes: 5 additions & 6 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.3.1" %}
{% set version = "0.3.2" %}
{% set file_ext = "tar.gz" %}
{% set hash_type = "sha256" %}
{% set hash_value = "94ea4c7d46e846cc7174787adce47156cf58dc257905c878edc5181b4fa300ed" %}
Expand All @@ -13,22 +13,21 @@ source:

build:
number: 0
entry_points:
- factor_analyzer = factor_analyzer.analyze:main
noarch: python
script:
- cd $SRC_DIR
- $PYTHON setup.py install
- "{{ PYTHON }} -m pip install . --no-deps -vv"

requirements:
build:
- python==3.6
- python >=3.6
- setuptools
- pandas
- scipy
- numpy
- scikit-learn
run:
- python==3.6
- python >=3.6
- pandas
- scipy
- numpy
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def requirements():


setup(name='factor_analyzer',
version='0.3.1',
version='0.3.2',
description='A Factor Analysis class',
long_description=readme(),
keywords='factor analysis',
Expand All @@ -26,8 +26,6 @@ def requirements():
url="https://github.com/EducationalTestingService/factor_analyzer",
install_requires=requirements(),
include_package_data=True,
entry_points={'console_scripts':
['factor_analyzer = factor_analyzer.analyze:main']},
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
Expand All @@ -40,5 +38,6 @@ def requirements():
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
zip_safe=True)

0 comments on commit 2d49dc7

Please sign in to comment.