Skip to content

Commit a421a97

Browse files
committed
Update version number and conda recipe.
- Also drop Python 3.7 since it's no longer on conda-forge.
1 parent 14d78b5 commit a421a97

File tree

5 files changed

+10
-14
lines changed

5 files changed

+10
-14
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ Confirmatory factor analysis example.
193193
Requirements
194194
------------
195195

196-
- Python 3.7 or higher
196+
- Python 3.8 or higher
197197
- ``numpy``
198198
- ``pandas``
199199
- ``scipy``

conda-recipe/factor_analyzer/meta.yaml

+5-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "factor_analyzer" %}
2-
{% set version = "0.4.0" %}
2+
{% set version = "0.4.1" %}
33

44
package:
55
name: '{{ name|lower }}'
@@ -16,15 +16,12 @@ build:
1616
- "{{ PYTHON }} -m pip install . --no-deps -vv"
1717

1818
requirements:
19-
build:
20-
- python >=3.6
19+
host:
20+
- python >=3.8
2121
- setuptools
22-
- pandas
23-
- scipy
24-
- numpy
25-
- scikit-learn
22+
- pip
2623
run:
27-
- python >=3.6
24+
- python >=3.8
2825
- pandas
2926
- scipy
3027
- numpy

doc/index.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Both the EFA and CFA classes within this package are fully compatible with
2121

2222
.. important::
2323

24-
Please make sure to read the :ref:`important notes <important_notes>` section if you encounter any
25-
unexpected results.
24+
Please make sure to read the :ref:`important notes <important_notes>`
25+
section if you encounter any unexpected results.
2626

2727

2828
Documentation

doc/introduction.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class.
7575

7676
Requirements
7777
------------
78-
- Python 3.7 or higher
78+
- Python 3.8 or higher
7979
- ``numpy``
8080
- ``pandas``
8181
- ``scipy``

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def requirements(): # noqa: D103
1818

1919
setup(
2020
name="factor_analyzer",
21-
version="0.4.0",
21+
version="0.4.1",
2222
description="A Factor Analysis tool written in Python",
2323
long_description=readme(),
2424
keywords="factor analysis",
@@ -40,7 +40,6 @@ def requirements(): # noqa: D103
4040
"Operating System :: Unix",
4141
"Operating System :: MacOS",
4242
"Programming Language :: Python :: 3",
43-
"Programming Language :: Python :: 3.7",
4443
"Programming Language :: Python :: 3.8",
4544
"Programming Language :: Python :: 3.9",
4645
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)