0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/requirements.in

113 lines
2.5 KiB
Plaintext
Raw Normal View History

2022-02-17 10:54:48 +01:00
# In order to add, delete or modify a dependency, please update
# the reference here and then run:
#
# - `uv pip compile requirements.in -o requirements.txt`
# - `uv pip compile requirements-dev.in -o requirements-dev.txt`
2022-02-17 10:54:48 +01:00
#
aiohttp>=3.9.0
aioboto3==12.0.0
refactor: Structlog batch exports logging (#18458) * fix: Checkout master before checking for hogql changes * fix: But go back to branch after done * fix: Instead just diff with origin/master * fix: Install libantlr, what's the worst that can happen? * fix: Install antlr the hogql-way * fix: Let's just checkout everything * feat(batch-exports): Add backfill model and service support * test(batch-exports-backfills): Add Workflow test * chore(batch-exports-backfill): Bump migration * feat(batch-exports): Add RedshiftBatchExportWorkflow * feat(batch-exports): Add Redshift to BatchExport destinations * feat(batch-exports): Support properties_data_type Redshift plugin parameter * refactor(batch-exports): Insert rows instead of using COPY * fix: Remove unused migration * chore: Require aiokafka * feat: Implement new structlog batch exports logger * refactor: Use new structlog logger everywhere * test: Add tests, fix things * fix: Remove old tests * chore: Change typing of return logger * chore: Bump structlog * chore: Extend docstrings * fix: Don't use async logging as it's unsupported by temporal runtime * test: Add logger tests * fix: Mix pytestmark lists * fix: Remove unused imports * fix: Cleanup pytest warnings * fix: Create and drop dataset for bigquery tests * fix: Typing issue? * fix: Let's just checkout everything * fix: Use global event loop in tests * fix: Blow-up cache * fix: Truncate only if table exists * revert-me: Skip all postgres tests * fix: Connect to kafka in localhost * fix: Lazily connect to Kafka * fix: Resolve conflicts * fix: Capture temporal context once and bind it to the logger * fix: Make configure logger sync * fix: Keep strong reference to background tasks * fix: Continue consuming from log queue even if we fail to produce * fix: Also catch the producer not starting * fix: Remove unused await * fix: Log kafka producer error after logger is configured
2023-11-13 16:07:35 +01:00
aiokafka>=0.8
antlr4-python3-runtime==4.13.1
boto3==1.28.16
brotli==1.1.0
2023-09-28 15:01:02 +02:00
celery==5.3.4
celery-redbeat==2.1.1
clickhouse-driver==0.2.7
2021-06-14 09:54:36 +02:00
clickhouse-pool==0.5.3
cryptography==39.0.2
dj-database-url==0.5.0
Django~=4.2.15
django-axes==5.9.0
django-cors-headers==3.5.0
django-deprecate-fields==0.1.1
django-extensions==3.1.2
django-filter==2.4.0
django-loginas==0.3.11
django-picklefield==3.0.1
django-prometheus==2.2.0
django-redis==5.2.0
django-statsd==2.5.2
django-structlog==2.1.3
django-revproxy==0.12.0
2024-06-27 23:16:27 +02:00
djangorestframework==3.15.1
djangorestframework-csv==2.1.1
2023-05-10 10:37:53 +02:00
djangorestframework-dataclasses==1.2.0
dlt==0.5.4
dlt[deltalake]==0.5.4
2022-03-18 10:45:17 +01:00
dnspython==2.2.1
drf-exceptions-hog==0.4.0
drf-extensions==0.7.0
drf-spectacular==0.27.2
geoip2==4.6.0
google-cloud-bigquery==3.26
gunicorn==20.1.0
infi-clickhouse-orm@ git+https://github.com/PostHog/infi.clickhouse_orm@9578c79f29635ee2c1d01b7979e89adab8383de2
kafka-python==2.0.2
2023-09-28 15:01:02 +02:00
kombu==5.3.2
langchain==0.3.3
langchain-openai==0.2.2
langfuse==2.52.1
langgraph==0.2.34
langsmith==0.1.132
lzstring==1.0.4
natsort==8.4.0
nanoid==2.0.0
numpy==1.23.3
openpyxl==3.1.2
orjson==3.10.7
2024-03-11 19:00:35 +01:00
pandas==2.2.0
paramiko==3.4.0
Pillow==10.2.0
pdpyras==5.2.0
posthoganalytics==3.6.6
psutil==6.0.0
2023-09-15 15:32:20 +02:00
psycopg2-binary==2.9.7
pymssql==2.3.0
PyMySQL==1.1.1
psycopg[binary]==3.1.20
pyarrow==17.0.0
pydantic==2.9.2
pyjwt==2.4.0
pyodbc==5.1.0
python-dateutil>=2.8.2
python3-saml==1.12.0
pytz==2023.3
redis==4.5.4
retry==0.9.2
requests~=2.32.0
s3fs==2023.10.0
stripe==10.3.0
selenium==4.1.5
sentry-sdk[clickhouse-driver,celery,openai,django]~=1.44.1
semantic_version==2.8.5
simple-salesforce>=1.12.6
scikit-learn==1.5.0
slack_sdk==3.17.1
snowflake-connector-python==3.6.0
snowflake-sqlalchemy==1.6.1
social-auth-app-django==5.0.0
social-auth-core==4.3.0
sqlalchemy==2.0.31
sqlalchemy-bigquery[bqstorage]==1.11.0
sshtunnel==0.4.0
2021-08-27 16:20:49 +02:00
statshog==1.0.6
refactor: Structlog batch exports logging (#18458) * fix: Checkout master before checking for hogql changes * fix: But go back to branch after done * fix: Instead just diff with origin/master * fix: Install libantlr, what's the worst that can happen? * fix: Install antlr the hogql-way * fix: Let's just checkout everything * feat(batch-exports): Add backfill model and service support * test(batch-exports-backfills): Add Workflow test * chore(batch-exports-backfill): Bump migration * feat(batch-exports): Add RedshiftBatchExportWorkflow * feat(batch-exports): Add Redshift to BatchExport destinations * feat(batch-exports): Support properties_data_type Redshift plugin parameter * refactor(batch-exports): Insert rows instead of using COPY * fix: Remove unused migration * chore: Require aiokafka * feat: Implement new structlog batch exports logger * refactor: Use new structlog logger everywhere * test: Add tests, fix things * fix: Remove old tests * chore: Change typing of return logger * chore: Bump structlog * chore: Extend docstrings * fix: Don't use async logging as it's unsupported by temporal runtime * test: Add logger tests * fix: Mix pytestmark lists * fix: Remove unused imports * fix: Cleanup pytest warnings * fix: Create and drop dataset for bigquery tests * fix: Typing issue? * fix: Let's just checkout everything * fix: Use global event loop in tests * fix: Blow-up cache * fix: Truncate only if table exists * revert-me: Skip all postgres tests * fix: Connect to kafka in localhost * fix: Lazily connect to Kafka * fix: Resolve conflicts * fix: Capture temporal context once and bind it to the logger * fix: Make configure logger sync * fix: Keep strong reference to background tasks * fix: Continue consuming from log queue even if we fail to produce * fix: Also catch the producer not starting * fix: Remove unused await * fix: Log kafka producer error after logger is configured
2023-11-13 16:07:35 +01:00
structlog==23.2.0
sqlparse==0.4.4
temporalio==1.7.1
token-bucket==0.3.0
toronado==0.1.0
webdriver_manager==4.0.1
whitenoise==6.5.0
feat(demo): Rework demo data generation system (#7889) * Rework demo data generation system * Fix `setup_dev` and `posthog-foss` * Keep old demo data generators to reduce hassle * Move to Hoglify concept * Separate new generator from old version * Fix issues * Rework simulation structure * Restore package.json * Reformat `requirements` * Fix signup button margin * Refactor things * Remove snapshots * Strip old stuff * Rearrange more * Fix bad imports * Add simulation scaffolding * Add `dry_run_matrix` command * Fix determinism * Update naming * Update dry_run_matrix.py * Model web client, add sessions, enable full-cluster simulation * Update flake8 config * Ignore T001 violation * Fix saving data * Instrument `set_project_up` more * Add demo cohorts, feature flag, experiment * Parametrize `start` and `end` in `simulate_matrix` * Add neighbor effects * Add more events * Allow silencing events in `simulate_matrix` * Improve effect scheduling and add more activities * Fix time measurement * Disallow creating extra orgs for demo users * Add more useful info to `simulate_matrix` output * Add super properties, refine world * Fix first-seen moment * `create_event` to Kafka if possible for speed * Alias `$distinct_id` to `distinct_id` in `keyMapping` * Extend simulation to 120 days * Fix experiment instrumentation * Fix some error message * Fix experiment flag * Increase number of demo sim clusters * Fix typing * Remove unused agent actions * Support Python 3.8 * Avoid `Union[Team, int]` * Fix an arg * Remove dodgy alias
2022-05-17 22:23:11 +02:00
mimesis==5.2.1
more-itertools==9.0.0
django-two-factor-auth==1.14.0
phonenumberslite==8.13.6
openai==1.51.2
tiktoken==0.8.0
nh3==0.2.14
hogql-parser==1.0.45
zxcvbn==4.4.28
zstd==1.5.5.1
xmlsec==1.3.13 # Do not change this version - it will break SAML
lxml==4.9.4 # Do not change this version - it will break SAML