Skip to content

Commit 5a6903b

Browse files
authored
chore(*): Remove Python 3.9 support and bump dev deps (#27)
1 parent 1b6f330 commit 5a6903b

File tree

12 files changed

+14
-21
lines changed

12 files changed

+14
-21
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ insert_final_newline = true
99
max_line_length = 120
1010
trim_trailing_whitespace = true
1111

12-
[{*.py, run-script}]
12+
[{*.py,run-script}]
1313
indent_size = 4

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v4
1919
- uses: actions/setup-python@v5
2020
with:
21-
python-version: '3.13.0-rc.2'
21+
python-version: '3.13'
2222
- name: version
2323
run: sed -i "s/__version__ = '.*'/__version__ = '$VERSION'/g" aioddd/__init__.py
2424
- name: deps

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: [ ubuntu-latest ]
17-
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13.0-rc.2' ]
17+
python-version: [ '3.10', '3.11', '3.12', '3.13' ]
1818
steps:
1919
- uses: actions/checkout@v4
2020
- uses: actions/setup-python@v5

Containerfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ WORKDIR /app
44

55
RUN conda install -y --download-only "python=3.12" && \
66
conda install -y --download-only "python=3.11" && \
7-
conda install -y --download-only "python=3.10" && \
8-
conda install -y --download-only "python=3.9"
7+
conda install -y --download-only "python=3.10"
98

109
COPY . ./
1110

@@ -28,6 +27,3 @@ RUN conda install -y "python=3.10"
2827
RUN --mount=type=cache,target=/root/.cache/pip python3 run-script dev-install
2928

3029
FROM miniconda3 AS py39
31-
32-
RUN conda install -y "python=3.9"
33-
RUN --mount=type=cache,target=/root/.cache/pip python3 run-script dev-install

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 - 2024 aiopy
3+
Copyright (c) 2020 - 2025 aiopy
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ if __name__ == '__main__':
7979

8080
## Requirements
8181

82-
- Python >= 3.9
82+
- Python >= 3.10
8383

8484
## Contributing
8585

compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@ services:
33
build:
44
context: .
55
dockerfile: Containerfile
6-
# target: py39
76
# target: py310
87
# target: py311
98
target: py312
10-
# image: ghcr.io/aiopy/python-aioddd:py39-${VERSION:-latest}
119
# image: ghcr.io/aiopy/python-aioddd:py310-${VERSION:-latest}
1210
# image: ghcr.io/aiopy/python-aioddd:py311-${VERSION:-latest}
1311
image: ghcr.io/aiopy/python-aioddd:py312-${VERSION:-latest}

docs_src/config/en/mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
copyright: 'Copyright © 2020 - 2022'
1+
copyright: 'Copyright © 2020 - 2025'
22

33
docs_dir: '../../docs/en'
44

docs_src/config/es/mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
copyright: 'Copyright © 2020 - 2022'
1+
copyright: 'Copyright © 2020 - 2025'
22

33
docs_dir: '../../docs/es'
44

docs_src/docs/en/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Key Features:
1212

1313
## Requirements
1414

15-
- Python 3.9+
15+
- Python 3.10+
1616

1717
## Installation
1818

0 commit comments

Comments
 (0)