-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'hog-plus-plus' into hogql-autocomplete
- Loading branch information
Showing
4 changed files
with
22 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters