Skip to content

Commit

Permalink
Merge branch 'hog-plus-plus' into hogql-autocomplete
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusandra committed Jun 20, 2024
2 parents c438594 + 46be06c commit 95369ec
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 6 deletions.
22 changes: 19 additions & 3 deletions .github/workflows/build-hogql-parser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,26 @@ jobs:
with:
python-version: '3.11'

# NOTE: removed because launchpad.net is down
# - if: ${{ endsWith(matrix.os, '-arm') }}
# uses: deadsnakes/[email protected] # Unfortunately actions/setup-python@v4 just doesn't work on ARM! This does
# with:
# python-version: '3.11'

- if: ${{ endsWith(matrix.os, '-arm') }}
uses: deadsnakes/[email protected] # Unfortunately actions/setup-python@v4 just doesn't work on ARM! This does
with:
python-version: '3.11'
name: Install Python 3.11 on ARM
run: |
sudo apt-get update
sudo apt-get install -y build-essential libssl-dev zlib1g-dev \
libncurses5-dev libncursesw5-dev libreadline-dev libsqlite3-dev \
libgdbm-dev libdb5.3-dev libbz2-dev libexpat1-dev liblzma-dev tk-dev
wget https://www.python.org/ftp/python/3.11.0/Python-3.11.0.tar.xz
tar -xf Python-3.11.0.tar.xz
cd Python-3.11.0
./configure --enable-optimizations
make -j 2
sudo make altinstall
- name: Build sdist
if: matrix.os == 'ubuntu-22.04' # Only build the sdist once
Expand Down
2 changes: 1 addition & 1 deletion hogql_parser/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

setup(
name="hogql_parser",
version="1.0.17",
version="1.0.18",
url="https://github.com/PostHog/posthog/tree/master/hogql_parser",
author="PostHog Inc.",
author_email="[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,6 @@ phonenumberslite==8.13.6
openai==1.10.0
tiktoken==0.6.0
nh3==0.2.14
hogql-parser==1.0.14
hogql-parser==1.0.18
zxcvbn==4.4.28
zstd==1.5.5.1
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ h11==0.13.0
# wsproto
hexbytes==1.0.0
# via dlt
hogql-parser==1.0.14
hogql-parser==1.0.18
# via -r requirements.in
httpcore==1.0.2
# via httpx
Expand Down

0 comments on commit 95369ec

Please sign in to comment.