Skip to content

Commit 7b4136d

Browse files
fix: conda build dependencies and bump to v1.0.2
- Fix conda build by removing unavailable conda packages - Use pip to install mcp and edgartools as they're not on conda-forge - Simplify conda runtime dependencies to only what's available
1 parent 9fb8a10 commit 7b4136d

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

conda/meta.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "sec-edgar-mcp" %}
2-
{% set version = environ.get('GIT_DESCRIBE_TAG', '1.0.1').lstrip('v') %}
2+
{% set version = environ.get('GIT_DESCRIBE_TAG', '1.0.2').lstrip('v') %}
33

44
package:
55
name: {{ name|lower }}
@@ -11,7 +11,9 @@ source:
1111
build:
1212
noarch: python
1313
number: 0
14-
script: {{ PYTHON }} -m pip install . -vv
14+
script: |
15+
{{ PYTHON }} -m pip install . -vv
16+
{{ PYTHON }} -m pip install mcp[cli]>=1.7.1 edgartools>=4.4.0
1517
1618
requirements:
1719
host:
@@ -20,8 +22,7 @@ requirements:
2022
- setuptools >=61.0
2123
run:
2224
- python >=3.11
23-
- mcp-cli >=1.7.1
24-
- edgartools >=4.4.0
25+
- pip
2526
- requests >=2.31.0
2627

2728
test:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "sec-edgar-mcp"
7-
version = "1.0.1"
7+
version = "1.0.2"
88
description = "SEC EDGAR MCP server for company filings and financial data"
99
authors = [{ name = "Stefano Amorelli", email = "stefano@amorelli.tech" }]
1010
readme = "README.md"

sec_edgar_mcp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from sec_edgar_mcp.tools import CompanyTools, FilingsTools, FinancialTools, InsiderTools
33
from sec_edgar_mcp.utils import TickerCache, SEC_USER_AGENT
44

5-
__version__ = "1.0.1"
5+
__version__ = "1.0.2"
66

77
__all__ = [
88
# Core

0 commit comments

Comments
 (0)