-
Notifications
You must be signed in to change notification settings - Fork 3
Replace pyreadr #57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Replace pyreadr #57
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
f1c4835
feat: Use rdata for examining Rds files.
jakubnowicki 46b833f
ci: Update Python version in the CI.
jakubnowicki e5d59db
fix: Fix warnings in date_constructor.
jakubnowicki 3a25375
chore: Bump package version.
jakubnowicki a66bed9
Update tealflow_mcp/utils/dataset_readers.py
jakubnowicki e1e4cca
feat: Improve type inference.
jakubnowicki File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,10 +4,10 @@ build-backend = "hatchling.build" | |
|
|
||
| [project] | ||
| name = "tealflow-mcp" | ||
| version = "0.2.0.dev1" | ||
| version = "0.2.0.dev2" | ||
| description = "MCP server for discovering, understanding, and generating Teal R Shiny applications for clinical trial data analysis" | ||
| readme = "README.md" | ||
| requires-python = ">=3.10" | ||
| requires-python = ">=3.11" | ||
| license = { text = "AGPL-3.0-only" } | ||
| authors = [ | ||
| { name = "Jakub Nowicki", email = "[email protected]" }, | ||
|
|
@@ -35,17 +35,17 @@ classifiers = [ | |
| "Intended Audience :: Science/Research", | ||
| "License :: OSI Approved :: GNU Affero General Public License v3", | ||
| "Programming Language :: Python :: 3", | ||
| "Programming Language :: Python :: 3.10", | ||
| "Programming Language :: Python :: 3.11", | ||
| "Programming Language :: Python :: 3.12", | ||
| "Programming Language :: Python :: 3.13", | ||
| "Topic :: Software Development :: Libraries :: Python Modules", | ||
| "Topic :: Scientific/Engineering", | ||
| ] | ||
| dependencies = [ | ||
| "mcp>=1.0.0", | ||
| "pydantic>=2.0.0", | ||
| "pandas>=2.0.0", | ||
| "pyreadr>=0.5.0", | ||
| "rdata>=1.0.0", | ||
| ] | ||
|
|
||
| [project.urls] | ||
|
|
@@ -78,7 +78,7 @@ docs = [ | |
| [tool.ruff] | ||
| # Set the maximum line length to 100 | ||
| line-length = 100 | ||
| target-version = "py310" | ||
| target-version = "py311" | ||
|
|
||
| # Exclude common directories | ||
| exclude = [ | ||
|
|
@@ -135,7 +135,7 @@ skip-magic-trailing-comma = false | |
| line-ending = "auto" | ||
|
|
||
| [tool.mypy] | ||
| python_version = "3.10" | ||
| python_version = "3.11" | ||
| warn_unused_configs = true | ||
| disallow_untyped_defs = false | ||
| disallow_incomplete_defs = false | ||
|
|
@@ -152,7 +152,7 @@ strict_optional = false | |
| module = [ | ||
| "mcp.*", | ||
| "fastmcp.*", | ||
| "pyreadr.*", | ||
| "rdata.*", | ||
| "pandas.*", | ||
| ] | ||
| ignore_missing_imports = true | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.