Skip to content

Commit

Permalink
fix: remove python3.8 support
Browse files Browse the repository at this point in the history
aiohttp has conflicting requirements for latest updates, where python3.8
is deprecated. Remove 3.8 support to simplify the requirements to take
latest.

Signed-off-by: Mike Marchetti <[email protected]>
  • Loading branch information
mfmarche committed Nov 9, 2024
1 parent a2c3165 commit 90ddbe0
Show file tree
Hide file tree
Showing 5 changed files with 486 additions and 577 deletions.
7 changes: 6 additions & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
version: 2

build:
os: ubuntu-24.04
tools:
python: "3.9"

sphinx:
configuration: docs/conf.py

python:
version: 3.7
version: 3.9
install:
- method: pip
path: .
Expand Down
7 changes: 7 additions & 0 deletions Dockerfile3.9
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM python:3.9

RUN : \
&& apt update \
&& apt install -y python3 curl \
&& curl -sSL https://install.python-poetry.org | python3 - \
&& pip install tox pre-commit pytest black python-dateutil commitizen
Loading

0 comments on commit 90ddbe0

Please sign in to comment.