-
Notifications
You must be signed in to change notification settings - Fork 216
Closed
astral-sh/ruff
#21749Labels
memoryrelated to memory usagerelated to memory usageneeds-infoMore information is needed from the issue authorMore information is needed from the issue author
Description
Hi,
I have small project with just one script and set it to use my system python:
[project]
name = "air-pollution"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = []
[tool.ty.environment]
python = "C:/Python312"These are all imports in the script:
from datetime import datetime, date
import json
from dateutil.relativedelta import relativedelta
import numpy as np
import pandas as pd
import requests
from retry import retry
from sqlalchemy import create_engine, textWhen I noticed that ty uses too much memory (7GB):
This should probably be because I didn't created venv, but even with venv standard backend apps commits to 2-3GB.
Just wanted to report this.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
memoryrelated to memory usagerelated to memory usageneeds-infoMore information is needed from the issue authorMore information is needed from the issue author