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
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,18 @@ jobs:
# Full history and tags: poetry-dynamic-versioning derives the version from git state, so a
# shallow clone would build the wrong number rather than fail.
- name: Check out source repository
uses: actions/checkout@v7
uses: actions/checkout@v7.0.1
with:
persist-credentials: false
fetch-depth: 0
fetch-tags: true
ref: ${{ inputs.ref || github.ref }}
- name: Set up Python
uses: actions/setup-python@v7
uses: actions/setup-python@v7.0.0
with:
python-version: "3.13"
python-version: "3.13.15"
- name: Install and configure Poetry
uses: snok/install-poetry@a783c322200f0519c7926aa6faa857c4e23e9263 # v1
uses: snok/install-poetry@a783c322200f0519c7926aa6faa857c4e23e9263 # v1.4.2
with:
version: 2.4.1
virtualenvs-create: true
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
# Upload artifacts for later use
- name: Upload Artifacts
if: matrix.reqstool-source == 'pypi'
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v7.0.1
with:
name: ${{ inputs.artifact-name || 'dist' }}
path: dist/
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out source repository
uses: actions/checkout@v7
uses: actions/checkout@v7.0.1
- name: Set up Python
uses: actions/setup-python@v7
uses: actions/setup-python@v7.0.0
with:
python-version: "3.13"
python-version: "3.13.15"
- name: Install and configure Poetry (this should ideally be done from pyproject.toml but..)
uses: snok/install-poetry@a783c322200f0519c7926aa6faa857c4e23e9263 # v1
uses: snok/install-poetry@a783c322200f0519c7926aa6faa857c4e23e9263 # v1.4.2
with:
version: 1.8.5
virtualenvs-create: true
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.13"
python = "3.14.7"
poetry = "2.4.1"
reqstool-python-decorators = "0.1.0"
poetry-dynamic-versioning = "1.10.0"
Expand Down
Loading