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
2 changes: 1 addition & 1 deletion .github/actions/setup-venv/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ runs:
sudo apt-get install -y libkrb5-dev

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ inputs.python-version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
if: github.event_name == 'pull_request'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
run: cd docs && make html

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup Python environment
uses: ./.github/actions/setup-venv
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:

- name: Upload package distribution files
if: matrix.task.name == 'Build'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: package
path: dist
Expand All @@ -135,12 +135,12 @@ jobs:
needs: [checks]
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.10"

Expand All @@ -155,7 +155,7 @@ jobs:
echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV

- name: Download package distribution files
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: package
path: dist
Expand All @@ -169,7 +169,7 @@ jobs:
twine upload -u '${{ secrets.PYPI_USERNAME }}' -p '${{ secrets.PYPI_PASSWORD }}' dist/*

- name: Publish GitHub release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}}
with:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
- bump GitHub Actions: `actions/checkout` to v6, `actions/upload-artifact` to v7, `actions/download-artifact` to v8, `actions/setup-python` to v6, `softprops/action-gh-release` to v3
- bump Python dev dependencies: `mypy` to <1.20, `black` to <26.0, `isort` to <6.2, `Sphinx` to <7.5.0, `furo` to 2025.12.19, `myst-parser` to <4.1, `sphinx-autobuild` to 2024.10.3, `sphinx-autodoc-typehints` to 2.5.0
- add TLS support
- enable server certificate verification by default
- enable Kerberos authentication
Expand Down
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ Changelog = "https://github.com/Mapepire-IBMi/mapepire-python/blob/main/CHANGELO
[project.optional-dependencies]
dev = [
"ruff",
"mypy>=1.0,<1.5",
"black>=23.0,<24.0",
"isort>=5.12,<5.13",
"mypy>=1.0,<1.20",
"black>=23.0,<26.0",
"isort>=5.12,<6.2",
"pytest",
"pyee",
"pep249abc",
Expand All @@ -49,12 +49,12 @@ dev = [
"build",
"setuptools",
"wheel",
"Sphinx>=4.3.0,<7.1.0",
"furo==2023.7.26",
"myst-parser>=1.0,<2.1",
"Sphinx>=8.0.2,<9",
"furo==2025.12.19",
"myst-parser>=1.0,<4.1",
"sphinx-copybutton==0.5.2",
"sphinx-autobuild==2021.3.14",
"sphinx-autodoc-typehints==1.23.3",
"sphinx-autobuild==2024.10.3",
"sphinx-autodoc-typehints==2.5.0",
"packaging",
"pre-commit",
"python-dotenv",
Expand Down
Loading