Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update all #72

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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.12
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.12
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.12
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.12
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.12
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.12
steps:
- uses: actions/checkout@v3
- name: Install package.
Expand Down
14 changes: 7 additions & 7 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.1.7',
'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.7',
'markupsafe==2.1.5',
'pygments==2.13.0',
'pymdown-extensions==9.7',
'pyscss==1.4.0',
'pyyaml==6.0.1',
'pyyaml==6.0.2',
'six==1.16.0',
'types-Markdown==3.4.2.1',
'types-PyYAML==6.0.12',
'types-Markdown==3.7.0.20240822',
'types-PyYAML==6.0.12.20240917',
'werkzeug==2.2.2',
),
python_requires='>=3.8',
Expand Down
Loading