Malthe Karbo
05/13/2022, 9:29 PMMarcin Grzybowski
05/30/2022, 9:36 AMMarcin Grzybowski
05/30/2022, 4:52 PMStรฉphan Taljaard
05/31/2022, 1:57 PMMarcin Grzybowski
06/02/2022, 10:20 AMEdmondo Porcu
07/03/2022, 8:59 PMale
07/14/2022, 12:23 PMale
07/24/2022, 5:55 PMpyfakefs
, so that I can mock files on the file system.
However, it seems something is not working as expected.
It seems related to pyfakefs
and prefect
, but Iโm not 100% sure.
Anyone able to help me figuring out whatโs going on? ๐
Stack trace in the thread!
Thanks! ๐ale
07/25/2022, 11:55 AMale
07/25/2022, 4:19 PMEdmondo Porcu
08/17/2022, 5:04 PMEdmondo Porcu
08/19/2022, 10:23 PMMarcin Grzybowski
08/22/2022, 11:47 AMEdmondo Porcu
08/30/2022, 6:36 PMale
09/02/2022, 11:17 AMprefect-shell
one, or should I stark from scratch?
If I extend prefect-shell
, should I create my own task and use the shell_run_command
inside my task?
Quick example:
from prefect_shell import shell_run_command
@task
def my_shell_task(command: str):
return shell_run_command(command=command)
Would this work if I call my_shell_task
in a flow?ale
09/22/2022, 8:15 PMZanie
State.result()
in an async context? (does not apply to Future.result()
)ale
09/29/2022, 3:20 PMdavzucky
10/02/2022, 12:09 PMZanie
Anna Geller
Thomas Fredriksen
10/10/2022, 12:20 PMale
12/07/2022, 7:57 AMprefect-collection-template
as usual.
From time to time, Iโm seeing the failures on the Github Action named โ_Template Synchronization_โ.
The reported error is
Run tibdex/github-app-token@v1
with:
github_api_url: <https://api.github.com>
repository: AlessandroLollo/prefect-sifflet
env:
pythonLocation: /opt/hostedtoolcache/Python/3.9.15/x64
PKG_CONFIG_PATH: /opt/hostedtoolcache/Python/3.9.15/x64/lib/pkgconfig
Python_ROOT_DIR: /opt/hostedtoolcache/Python/3.9.15/x64
Python2_ROOT_DIR: /opt/hostedtoolcache/Python/3.9.15/x64
Python3_ROOT_DIR: /opt/hostedtoolcache/Python/3.9.15/x64
LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.9.15/x64/lib
Error: Error: Input required and not supplied: app_id
Anyone knows how to solve it?
Thanks! ๐ale
12/15/2022, 8:47 PMStefano Cascavilla
12/16/2022, 12:52 PMcollections/catalog
path. My question is: how can I publish it on PyPi? Is there any automation? Something related to Github action?
Thanks! ๐Senthil M.K.
01/17/2023, 11:42 PMale
01/29/2023, 8:56 PMJaime Raldua Veuthey
02/03/2023, 7:28 AMale
02/06/2023, 1:44 PM../../../.pyenv/versions/3.10.9/envs/prefect-huggingface/lib/python3.10/site-packages/prefect/testing/standard_test_suites/task_runners.py:155
/Users/alessandro.lollo/.pyenv/versions/3.10.9/envs/prefect-huggingface/lib/python3.10/site-packages/prefect/testing/standard_test_suites/task_runners.py:155: PytestUnknownMarkWarning: Unknown pytest.mark.flaky - is this a typo? You can register custom marks to avoid this warning - for details, see <https://docs.pytest.org/en/stable/how-to/mark.html>
@pytest.mark.flaky(max_runs=4) # Threads do not consistently yield
Not sure whatโs the issue here, anyone experiencing this?
tests/test_tasks.py::test_get_inference_result_fails
/Users/alessandro.lollo/.pyenv/versions/3.10.9/envs/prefect-huggingface/lib/python3.10/site-packages/prefect/orion/database/migrations/versions/sqlite/2022_04_25_135207_b75d279ba985_replace_version_with_checksum.py:102: RemovedIn20Warning: Deprecated API features detected! These feature(s) are not compatible with SQLAlchemy 2.0. To prevent incompatible upgrades prior to updating applications, ensure requirements files are pinned to "sqlalchemy<2.0". Set environment variable SQLALCHEMY_WARN_20=1 to show all deprecation warnings. Set environment variable SQLALCHEMY_SILENCE_UBER_WARNING=1 to silence this message. (Background on SQLAlchemy 2.0 at: <https://sqlalche.me/e/b8d9>)
meta_data = sa.MetaData(bind=connection)
tests/test_tasks.py::test_get_inference_result_fails
/Users/alessandro.lollo/.pyenv/versions/3.10.9/lib/python3.10/contextlib.py:142: SAWarning: Skipped unsupported reflection of expression-based index ix_flow_run__coalesce_start_time_expected_start_time_desc
next(self.gen)
tests/test_tasks.py::test_get_inference_result_fails
/Users/alessandro.lollo/.pyenv/versions/3.10.9/lib/python3.10/contextlib.py:142: SAWarning: Skipped unsupported reflection of expression-based index ix_flow_run__coalesce_start_time_expected_start_time_asc
next(self.gen)
-- Docs: <https://docs.pytest.org/en/stable/how-to/capture-warnings.html>
These seems to be related to SQLAlchemy 2.0.
However, in my environment I have
prefect==2.7.11
and
sqlalchemy==1.4.46
Anyone experiencing the same? Is this something I should be worried about? ๐
Wajdi
02/20/2023, 4:24 PM