Skip to content

Commit bae5e8f

Browse files
Update CHANGES.rst
1 parent b242020 commit bae5e8f

File tree

5 files changed

+41
-706
lines changed

5 files changed

+41
-706
lines changed

.github/workflows/test.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ jobs:
77
matrix:
88
os: ['ubuntu-latest']
99
python-version:
10-
- '3.8'
1110
- '3.9'
1211
- '3.10'
1312
- '3.11'

CHANGES.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Unreleased changes
1313
- Make documentation builds reproducible.
1414
- Test documentation builds in CI.
1515
- Fix Pendulum parsing of datetime instances with timezones. (#755)
16+
- Migrate to `uv <https://docs.astral.sh/uv/>`_ for dependency management and package installation, improving build performance and reproducibility. (#780)
17+
- Migrate to `ruff <https://docs.astral.sh/ruff/>`_ for code linting and formatting, replacing flake8 with a faster Rust-based tool. (#780)
1618

1719
0.41.2 (2024-03-22)
1820
^^^^^^^^^^^^^^^^^^^

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,13 @@ authors = [
1515
{name = "Vesa Uimonen"},
1616
{name = "Jose Soto"},
1717
]
18-
requires-python = ">=3.8"
18+
requires-python = ">=3.9"
1919
classifiers = [
2020
"Environment :: Web Environment",
2121
"Intended Audience :: Developers",
2222
"License :: OSI Approved :: BSD License",
2323
"Operating System :: OS Independent",
2424
"Programming Language :: Python",
25-
"Programming Language :: Python :: 3.8",
2625
"Programming Language :: Python :: 3.9",
2726
"Programming Language :: Python :: 3.10",
2827
"Programming Language :: Python :: 3.11",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{3.8, 3.9, 3.10, 3.11, 3.12, 3.13}-sqlalchemy{14, 2}
3+
py{3.9, 3.10, 3.11, 3.12, 3.13}-sqlalchemy{14, 2}
44
ruff
55
docs
66
labels =

0 commit comments

Comments
 (0)