Skip to content

Commit

Permalink
Merge pull request #1777 from alphagov/upgrade-lambda-to-3-11
Browse files Browse the repository at this point in the history
Upgrade to python 3.11
  • Loading branch information
kyle-c-simmons authored Oct 10, 2023
2 parents 8cd192f + fe691cd commit a5ee3d3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#! /bin/bash

virtualenv -p python3.8 .venv
virtualenv -p python3.11 .venv
. .venv/bin/activate

mkdir -p wheelhouse

pip3 install --platform manylinux2014_x86_64 --target=wheelhouse --implementation cp --python 3.8 --only-binary=:all: --upgrade grequests
pip3 install --platform manylinux2014_x86_64 --target=wheelhouse --implementation cp --python 3.11 --only-binary=:all: --upgrade grequests
(
cd wheelhouse
zip -r ../download_logs_analytics.zip .
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#! /bin/bash

virtualenv -p python3.8 .venv
virtualenv -p python3.11 .venv
. .venv/bin/activate

mkdir -p wheelhouse

pip3 install --platform manylinux2014_x86_64 --target=wheelhouse --implementation cp --python 3.8 --only-binary=:all: --upgrade grequests
pip3 install --platform manylinux2014_x86_64 --target=wheelhouse --implementation cp --python 3.11 --only-binary=:all: --upgrade grequests
(
cd wheelhouse
zip -r ../send_public_events_to_ga.zip .
Expand Down
Binary file not shown.

0 comments on commit a5ee3d3

Please sign in to comment.