We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b268b8b commit 208eb1dCopy full SHA for 208eb1d
.github/workflows/ci.yml
@@ -2,11 +2,7 @@
2
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
3
4
name: Dominate
5
-on:
6
- push:
7
- branches: ["master"]
8
- pull_request:
9
+on: [push, pull_request, workflow_dispatch]
10
11
jobs:
12
test:
@@ -17,16 +13,16 @@ jobs:
17
13
python: ["3"]
18
14
os: ["ubuntu-latest"]
19
15
include:
20
- - {python: "3.9", os: "ubuntu-22.04"}
21
16
- {python: "3.10", os: "ubuntu-22.04"}
22
- {python: "3.11", os: "ubuntu-22.04"}
23
- {python: "3.12", os: "ubuntu-22.04"}
24
- {python: "3.13", os: "ubuntu-24.04"}
25
- - {python: "pypy3.10", os: "ubuntu-24.04"}
+ - {python: "3.14", os: "ubuntu-24.04"}
+ - {python: "pypy3.11", os: "ubuntu-24.04"}
26
steps:
27
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
28
- name: "Set up Python ${{ matrix.python }}"
29
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v6
30
with:
31
python-version: ${{ matrix.python }}
32
- name: "Install dependencies"
pyproject.toml
@@ -6,7 +6,7 @@ authors = [
{name = "Tom Flanagan", email = "tom@zkpq.ca"},
{name = "Jake Wharton"},
]
-requires-python = ">=3.9"
+requires-python = ">=3.10"
keywords = ["framework", "templating", "template", "html", "xhtml", "python", "html5"]
license = {text = "LGPL-3.0-or-newer"}
classifiers = [
@@ -15,11 +15,11 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
+ "Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
setup.cfg
@@ -1,5 +1,2 @@
1
[metadata]
license_files = ["LICENSE.txt"]
-
-[bdist_wheel]
-universal=1
0 commit comments