Skip to content

Commit

Permalink
Run on python 3.11.11
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinvanrijn committed Jan 12, 2025
1 parent b3eefcb commit 395e6dc
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,14 @@ jobs:
- name: Build demjson
shell: bash
run: |
curl -sSo Python-3.11.11.tar.xz https://www.python.org/ftp/python/3.11.11/Python-3.11.11.tar.xz
tar -xJf Python-3.11.11.tar.xz
cd Python-3.11.11
sudo ./configure --prefix=/opt/python/3.11.11/ --enable-optimizations --with-lto --with-computed-gotos --with-system-ffi
sudo make -j "$(nproc)"
sudo make altinstall
cd ..
rm Python-3.11.11.tar.xz
curl -sSo pip.pyz https://bootstrap.pypa.io/pip/pip.pyz
python pip.pyz -V
python pip.pyz install setuptools==57.5.0
Expand Down Expand Up @@ -347,6 +355,14 @@ jobs:
- name: Build demjson
shell: bash
run: |
curl -sSo Python-3.11.11.tar.xz https://www.python.org/ftp/python/3.11.11/Python-3.11.11.tar.xz
tar -xJf Python-3.11.11.tar.xz
cd Python-3.11.11
sudo ./configure --prefix=/opt/python/3.11.11/ --enable-optimizations --with-lto --with-computed-gotos --with-system-ffi
sudo make -j "$(nproc)"
sudo make altinstall
cd ..
rm Python-3.11.11.tar.xz
curl -sSo pip.pyz https://bootstrap.pypa.io/pip/pip.pyz
python pip.pyz -V
python pip.pyz install setuptools==57.5.0
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/jsonlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ jobs:
- name: Build demjson
shell: bash
run: |
curl -sSo Python-3.11.11.tar.xz https://www.python.org/ftp/python/3.11.11/Python-3.11.11.tar.xz
tar -xJf Python-3.11.11.tar.xz
cd Python-3.11.11
sudo ./configure --prefix=/opt/python/3.11.11/ --enable-optimizations --with-lto --with-computed-gotos --with-system-ffi
sudo make -j "$(nproc)"
sudo make altinstall
cd ..
rm Python-3.11.11.tar.xz
curl -sSo pip.pyz https://bootstrap.pypa.io/pip/pip.pyz
python pip.pyz -V
python pip.pyz install setuptools==57.5.0
Expand Down

0 comments on commit 395e6dc

Please sign in to comment.