phi-friday
phi-friday
fix SQLModel.parse_obj, SQLModel.validate method return type "SQLModel" -> _TSQLModel [issues link](https://github.com/tiangolo/sqlmodel/issues/317)
diskcache: [github](https://github.com/grantjenks/python-diskcache) I think `diskcache` is a good library to use in the absence of an installable backend. `diskcache` is a library that uses local drive and `sqlite`, and is...
--- The decorator's definition allows dynamic, but they are not defined in the stub file, making it difficult to get help from the IDE. **^ Add meaningful description above** Read...
`ruff` is a linter and formatter for python. It is faster than other existing linters(ex: `pylint`) and is compatible with `black`. Also many other libraries are applying `ruff` already. (ex:...
I'm replacing `rye` with `uv`. (The following articles were referenced: https://github.com/astral-sh/rye/discussions/1342) I've replaced most of the functionality with `uv`, or changed to other commands or packages. But changing the version...
Like `setup` and `teardown`, `skip_if` and `run_if` should also be removed. ### sample dag code ```python from __future__ import annotations from pendulum import datetime from airflow.decorators import dag, task @dag(start_date=datetime(2024,...
closes: #225 ### 패키징 및 배포 도구로 선택된 `uv` 사용 방법 상세한 문서: [공식문서](https://docs.astral.sh/uv/) #### 설치 ##### linux or mac `curl -LsSf https://astral.sh/uv/install.sh | sh` ##### windows `powershell -c "irm...
이 라이브러리는 [PEP 621](https://peps.python.org/pep-0621/)을 만족하지 못하고 있습니다. 현재 PEP 621을 만족하고 있는 PDM, rye 등을 사용하여, 프로젝트 관리와 패키징 작업을 간소화 할 수 있습니다. 필요하시다면 기여할 의향이 있습니다. 확인 부탁드립니다.
related: #493 I didn't use the generic and added type hints using primitive types in most cases. Therefore, I ignored some types with `Any`. I also ignored some errors from...
Before I applied #497 it worked like this https://github.com/bayesian-optimization/BayesianOptimization/blob/bc9af23981cb22b98344424b5c2544b741b74938/bayes_opt/logger.py#L167 but after, https://github.com/bayesian-optimization/BayesianOptimization/blob/16c00f3b7867d7cf43047b2c80d4b6e54156b5e8/bayes_opt/logger.py#L164 I expect it to work the same as before.