Yunseong Hwang
Yunseong Hwang
해당 이슈가 현재 알려주신 workaround 는 있지만 근본적으로 현재 배포중인 코드상에서 해결된 것은 아닌 상황인데요. 일단은 known issue 로 가져가고 해당 내용을 다른 사람들에게도 고지하기 위해서, 이슈가 실제로 해결될 때...
개인적인 의견이지만, 키움증권의 OpenAPI+ 를 통해서 주가정보를 수집하는건 다른 데이터 출처들과 비교했을때 메리트가 많이 떨어지지 않나 싶습니다. - 일단 조회횟수 제한으로 인해 속도가 너무 느려요. 거의 4초에 1번 조회 꼴......
일단 말씀주신 `GetMarketPriceInfo()` 함수의 내부 TR 코드는 `OPT10007` 이며 해당 TR 은 KOAStudio 상 멀티데이터를 출력하는 것으로 표기되어 있습니다.  그런데 기존에는 이게 여러가지 이유에서 싱글데이터를 출력하는 것처럼 동작하고 있었고,...
안녕하세요. 주문 쪽에 문제가 있는 걸로 말씀 주셔서 #13 같은 문제인가도 잠깐 생각했는데 그건 당장은 아닌 것 같고요. 주문이 연속으로 빠르게 나가는 경우 문제가 있는 걸로 말씀주신 것으로 봐선 #14...
I think warning happens due to this line 85: https://github.com/cjolowicz/nox-poetry/blob/c79617548e67b57508543a92d22f7b80c5bf2d23/src/nox_poetry/poetry.py#L81-L91 Can it be replaced to this?: ```python output = self.session.run_always( "poetry", "export", "--format=requirements.txt", "--with", "dev", *[f"--extras={extra}" for extra in self.config.extras],...
Possibly related issue: #12163 It suggests a workaround setting `RUSTFLAGS` environment variable like below: ```sh export RUSTFLAGS+=" -C lto=no" ``` For my case, it also seems to work with the...
It seems that `virtualenv` omits some required dlls while creating a poetry env in here: https://github.com/python-poetry/poetry/blob/2def357119b2a9d48cc5c6608923c587532a5b09/src/poetry/utils/env.py#L1089-L1105 Copying `${CONDA_PREFIX}/Library/bin/*ffi*.dll`s to poetry env's `Script` directory solved problem for me. Use `conda info`...
Above actually only solved the `ctypes` problem when tested with `poetry run python`, but not others including TLS/SSL. I ended up with copying all the libraries under `${CONDA_PREFIX}/Library/bin/` out to...
@jongyoul I think the failures are due to CI actions taking too long, hopefully not by the code change. Could you please check if it's the CI issue first? Or...
@jongyoul I think now CI does not hang and all tests for core modules finish properly with the green check icons. But I'm still curious whether the errors and warnings...