Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
inspect:
runs-on: ubuntu-latest
container: python:3.10
container: python:3.14
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
prerelease: false
pypi_release:
runs-on: ubuntu-latest
container: python:3.10
container: python:3.14
needs:
- inspect
- github_release
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
container: python:3.10
container: python:3.14
steps:
- uses: actions/checkout@v3
- name: Install package.
Expand All @@ -17,7 +17,7 @@ jobs:
run: pytest
build:
runs-on: ubuntu-latest
container: python:3.10
container: python:3.14
steps:
- uses: actions/checkout@v3
- name: Install package.
Expand All @@ -26,7 +26,7 @@ jobs:
run: aip-site-gen tests/test_data/ /out/
lint:
runs-on: ubuntu-latest
container: python:3.10
container: python:3.14
steps:
- uses: actions/checkout@v3
- name: Install the linter (flake8).
Expand All @@ -35,7 +35,7 @@ jobs:
run: flake8 aip_site/ tests/
mypy:
runs-on: ubuntu-latest
container: python:3.10
container: python:3.14
steps:
- uses: actions/checkout@v3
- name: Install package.
Expand Down
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,19 @@
platforms='Posix; MacOS X',
include_package_data=True,
install_requires=(
'click==8.1.3',
'click==8.3.1',
'flask==2.2.2',
'itsdangerous==2.1.2',
'itsdangerous==2.2.0',
'jinja2==3.1.2',
'markdown==3.4.1',
'markupsafe==2.1.1',
'markdown==3.10',
'markupsafe==2.1.5',
'pygments==2.13.0',
'pymdown-extensions==9.7',
'pyscss @ git+https://github.com/aip-dev/pyScss.git@master',
'pyyaml==6.0.1',
'six==1.16.0',
'types-Markdown==3.4.2.1',
'types-PyYAML==6.0.12',
'pyyaml==6.0.3',
'six==1.17.0',
'types-Markdown==3.10.0.20251106',
'types-PyYAML==6.0.12.20250915',
'werkzeug==2.2.2',
),
python_requires='>=3.8',
Expand Down
Loading