Skip to content

Commit cfdc394

Browse files
Asphalt5 update (#47)
1 parent 87e217d commit cfdc394

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/test.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.10"]
13+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.10"]
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v4
@@ -22,7 +22,9 @@ jobs:
2222
cache: pip
2323
cache-dependency-path: pyproject.toml
2424
- name: Install dependencies
25-
run: pip install -e .[test]
25+
run: |
26+
pip install git+https://github.com/asphalt-framework/[email protected]
27+
pip install -e .[test]
2628
- name: Test with pytest
2729
run: coverage run -m pytest -v
2830
- name: Generate coverage report

.readthedocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
build:
44
os: ubuntu-22.04
55
tools:
6-
python: "3.8"
6+
python: "3.9"
77

88
sphinx:
99
configuration: docs/conf.py

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ classifiers = [
1818
"Topic :: Communications :: Email",
1919
"Programming Language :: Python",
2020
"Programming Language :: Python :: 3",
21-
"Programming Language :: Python :: 3.8",
2221
"Programming Language :: Python :: 3.9",
2322
"Programming Language :: Python :: 3.10",
2423
"Programming Language :: Python :: 3.11",
2524
"Programming Language :: Python :: 3.12",
25+
"Programming Language :: Python :: 3.13",
2626
]
27-
requires-python = ">=3.8"
27+
requires-python = ">=3.9"
2828
dependencies = [
2929
"asphalt ~= 4.8",
3030
"smtpproto ~= 2.0",

0 commit comments

Comments
 (0)