Skip to content

Commit

Permalink
add version specifiers to pandas and python requirements
Browse files Browse the repository at this point in the history
This fixes a linter complaint ("noarch: python recipes are required to have a lower bound on the python version") that's showing up in PRs like conda-forge#6.

I'm not sure if the python 3.2 lower bound is actually correct. The fredapi package's contents itself do not specify a minimum Python version in the documentation or metadata, as far as I can see. I selected 3.2 because that's the minimum version required by pandas 0.15, and the fredapi package does declare a 'pandas>=0.15' dependency in its requirements.txt.
  • Loading branch information
apjanke committed May 31, 2024
1 parent 9428a69 commit d8aef7f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ build:
requirements:
host:
- pip
- python
- python >=3.2
run:
- pandas
- python
- pandas >=0.15
- python >=3.2

test:
imports:
Expand Down

0 comments on commit d8aef7f

Please sign in to comment.