Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: drop python3.8 support and run ci on 3.11 #318

Merged
merged 4 commits into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8', '3.11']
python-version: ['3.11']

steps:

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/upgrade-python-requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
python-version: ["3.8"]
python-version: ["3.11"]

steps:
- name: setup target branch
Expand All @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v4
with:
ref: ${{ env.target_branch }}

- name: setup python
uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -66,6 +66,6 @@ jobs:
username: ${{secrets.EDX_SMTP_USERNAME}}
password: ${{secrets.EDX_SMTP_PASSWORD}}
subject: Upgrade python requirements workflow failed in ${{github.repository}}
to: arbi-bom@edx.org
to: arbi-bom@edx.org
from: github-actions <github-actions@edx.org>
body: Upgrade python requirements workflow in ${{github.repository}} failed! For details see "github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@ swagger.yaml
.swagger-codegen-ignore
edx-api-stub-server/
swagger-build-artifacts/
venv
14 changes: 7 additions & 7 deletions requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#
# This file is autogenerated by pip-compile with Python 3.8
# This file is autogenerated by pip-compile with Python 3.11
# by the following command:
#
# make upgrade
#
boto==2.49.0
# via google-compute-engine
boto3==1.34.51
boto3==1.35.6
# via -r requirements/base.in
botocore==1.34.51
botocore==1.35.6
# via
# -r requirements/base.in
# boto3
Expand All @@ -17,7 +17,7 @@ distro==1.9.0
# via google-compute-engine
google-compute-engine==2.8.13
# via -r requirements/base.in
jinja2==3.1.3
jinja2==3.1.4
# via -r requirements/base.in
jmespath==1.0.1
# via
Expand All @@ -26,15 +26,15 @@ jmespath==1.0.1
# botocore
markupsafe==2.1.5
# via jinja2
python-dateutil==2.8.2
python-dateutil==2.9.0.post0
# via botocore
s3transfer==0.10.0
s3transfer==0.10.2
# via boto3
six==1.16.0
# via
# -r requirements/base.in
# python-dateutil
urllib3==1.26.18
urllib3==2.2.2
# via botocore

# The following packages are considered to be unsafe in a requirements file:
Expand Down
14 changes: 8 additions & 6 deletions requirements/pip-tools.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
#
# This file is autogenerated by pip-compile with python 3.8
# To update, run:
# This file is autogenerated by pip-compile with Python 3.11
# by the following command:
#
# make upgrade
#
click==8.1.3
build==1.2.1
# via pip-tools
pep517==0.12.0
click==8.1.3
# via pip-tools
packaging==24.1
# via build
pip-tools==6.8.0
# via -r requirements/pip-tools.in
tomli==2.0.1
# via pep517
pyproject-hooks==1.1.0
# via build
wheel==0.37.1
# via pip-tools

Expand Down
8 changes: 4 additions & 4 deletions requirements/pip.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#
# This file is autogenerated by pip-compile with Python 3.8
# This file is autogenerated by pip-compile with Python 3.11
# by the following command:
#
# make upgrade
#
wheel==0.42.0
wheel==0.44.0
# via -r requirements/pip.in

# The following packages are considered to be unsafe in a requirements file:
pip==24.0
pip==24.2
# via -r requirements/pip.in
setuptools==69.1.1
setuptools==73.0.1
# via -r requirements/pip.in
21 changes: 6 additions & 15 deletions requirements/pip_tools.txt
Original file line number Diff line number Diff line change
@@ -1,32 +1,23 @@
#
# This file is autogenerated by pip-compile with Python 3.8
# This file is autogenerated by pip-compile with Python 3.11
# by the following command:
#
# make upgrade
#
build==1.0.3
build==1.2.1
# via pip-tools
click==8.1.7
# via pip-tools
importlib-metadata==7.0.1
packaging==24.1
# via build
packaging==23.2
# via build
pip-tools==7.4.0
pip-tools==7.4.1
# via -r requirements/pip_tools.in
pyproject-hooks==1.0.0
# via
# build
# pip-tools
tomli==2.0.1
pyproject-hooks==1.1.0
# via
# build
# pip-tools
# pyproject-hooks
wheel==0.42.0
wheel==0.44.0
# via pip-tools
zipp==3.17.0
# via importlib-metadata

# The following packages are considered to be unsafe in a requirements file:
# pip
Expand Down
Loading