Skip to content

Commit

Permalink
include cgi.py
Browse files Browse the repository at this point in the history
  • Loading branch information
FriedrichFroebel authored Jul 24, 2024
1 parent 6a8038b commit f531a45
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ jobs:
- name: install package
run: |
python -m pip install .[dev,mypy]
# Bottle still depends on the old `cgi` module removed in Python 3.13,
# thus provide it here.
- name: prepare cgi module (Python 3.13)
run: |
wget https://github.com/python/cpython/raw/3.12/Lib/cgi.py
- name: run tests
run:
python -m unittest discover --verbose --start-directory tests
Expand Down

0 comments on commit f531a45

Please sign in to comment.