Skip to content

Commit

Permalink
🚧(project) remove Python 3.8 support
Browse files Browse the repository at this point in the history
WIP.
  • Loading branch information
quitterie-lcs committed Sep 19, 2024
1 parent 1e3ebba commit 50c44f2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ workflows:
- build:
matrix:
parameters:
python-image: [python:3.8, python:3.9, python:3.10, python:3.11, python:3.12]
python-image: [python:3.9, python:3.10, python:3.11, python:3.12]
filters:
tags:
only: /.*/
Expand All @@ -731,7 +731,7 @@ workflows:
- test:
matrix:
parameters:
python-image: [python:3.8, python:3.9, python:3.10, python:3.11, python:3.12]
python-image: [python:3.9, python:3.10, python:3.11, python:3.12]
requires:
- build
filters:
Expand All @@ -741,7 +741,7 @@ workflows:
matrix:
parameters:
python-image:
[python:3.8, python:3.9, python:3.10, python:3.11, python:3.12]
[python:3.9, python:3.10, python:3.11, python:3.12]
filters:
tags:
only: /.*/
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
requires-python = ">=3.8"
requires-python = ">=3.9"
license = { file = "LICENSE.md" }
keywords = ["LRS", "Analytics", "xAPI", "Open edX"]
dependencies = [
Expand Down Expand Up @@ -57,7 +57,7 @@ backend-ldp = [
"requests>=2.0.0",
]
backend-lrs = [
"httpx<0.27.3", # pin as `pytest-httpx<0.23.0` requires `httpx==0.24.*`
"httpx>=0.27,<1.0",
]
backend-mongo = [
"motor[srv]>=3.3.0",
Expand Down Expand Up @@ -105,9 +105,9 @@ dev = [
"polyfactory==2.16.2",
"pyfakefs==5.6.0",
"pymdown-extensions==10.9",
"pytest<8.0.0", # pin as pytest-httpx<0.23.0 is not compatible with pytest 8.0.0
"pytest==8.3.3",
"pytest-cov==5.0.0",
"pytest-httpx<0.23.0", # pin as Python 3.8 is no longer supported from release 0.23.0
"pytest-httpx==0.30.0",
"requests-mock==1.12.1",
"responses==0.25.3",
"ruff==0.6.5",
Expand All @@ -120,7 +120,7 @@ lrs = [
"bcrypt==4.2.0",
"fastapi==0.114.2",
"cachetools==5.5.0",
"httpx<0.27.3", # pin as `pytest-httpx<0.23.0` requires `httpx==0.24.*`
"httpx>=0.27,<1.0",
"sentry_sdk==2.14.0",
"python-jose==3.3.0",
"uvicorn[standard]==0.30.6",
Expand Down
6 changes: 1 addition & 5 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@
"commitBodyTable": true,
"ignoreDeps": [
"backend-clickhouse/clickhouse-connect",
"backend-lrs/httpx",
"dev/pytest",
"dev/pytest-httpx",
"dev/responses",
"lrs/httpx"
"dev/responses"
],
"packageRules": [
{
Expand Down

0 comments on commit 50c44f2

Please sign in to comment.