Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.x"
cache: 'pip'
cache-dependency-path: 'requirements.txt'
- run: python -m pip install -r requirements.txt
Expand All @@ -35,10 +35,7 @@ jobs:
- run: sudo apt install -y gettext
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- uses: actions/setup-node@v3.5.1
with:
node-version: 'lts/*'
python-version: "3.x"
- uses: actions/checkout@v3
- name: Install Python dependencies
run: python -m pip install --upgrade pip setuptools wheel twine readme-renderer
Expand All @@ -54,7 +51,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.x"
cache: 'pip'
cache-dependency-path: 'requirements.txt'
- run: python -m pip install --upgrade pip setuptools wheel
Expand All @@ -68,9 +65,9 @@ jobs:
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand All @@ -91,7 +88,7 @@ jobs:
matrix:
extras:
- wagtail
python-version: ["3.10"]
python-version: ["3.x"]
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.x"
- name: Install Python dependencies
run: python -m pip install --upgrade pip setuptools wheel twine
- name: Build dist packages
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ classifier =
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3 :: Only
Topic :: Internet :: WWW/HTTP
Topic :: Internet
Expand Down