From 6ea797d0cd60c3ab3362232641b312e9907c3a40 Mon Sep 17 00:00:00 2001 From: Khaleel Al-Adhami Date: Wed, 6 Nov 2024 11:28:08 -0800 Subject: [PATCH] pin marked to correct version (#4313) * pin marked to correct version * remove it completely? * missing quotations * match against reflex --- .github/workflows/integration_tests.yml | 2 +- reflex/components/datadisplay/dataeditor.py | 1 - reflex/constants/installer.py | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 7717ef2650..fc5935c2ab 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -145,7 +145,7 @@ jobs: - name: Install Requirements for reflex-web working-directory: ./reflex-web - run: poetry run uv pip install -r requirements.txt + run: poetry run uv pip install $(grep -ivE "reflex " requirements.txt) - name: Install additional dependencies for DB access run: poetry run uv pip install psycopg2-binary - name: Init Website for reflex-web diff --git a/reflex/components/datadisplay/dataeditor.py b/reflex/components/datadisplay/dataeditor.py index 860f75007d..e3f0b71177 100644 --- a/reflex/components/datadisplay/dataeditor.py +++ b/reflex/components/datadisplay/dataeditor.py @@ -189,7 +189,6 @@ class DataEditor(NoSSRComponent): library: str = "@glideapps/glide-data-grid@^6.0.3" lib_dependencies: List[str] = [ "lodash@^4.17.21", - "marked@^14.1.2", "react-responsive-carousel@^3.2.7", ] diff --git a/reflex/constants/installer.py b/reflex/constants/installer.py index 42084bb4d0..04c563f921 100644 --- a/reflex/constants/installer.py +++ b/reflex/constants/installer.py @@ -77,7 +77,7 @@ def DEFAULT_PATH(cls): DEFAULT_CONFIG = """ [install] -registry = {registry} +registry = "{registry}" """