Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.13"
cache: "pip"
cache-dependency-path: "**/pyproject.toml"
- name: Install build dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ jobs:
src_folder: src/alphapepttools
commitish_to_release: ${{ inputs.commitish_to_release }}
build_nodejs_ui: false
python_version: 3.12
python_version: 3.13
2 changes: 1 addition & 1 deletion .github/workflows/publish_on_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
package_name: alphapepttools
src_folder: src/alphapepttools
tag_to_release: ${{ inputs.tag_to_release }}
python_version: 3.12
python_version: 3.13
test_stable: true
secrets:
test_pypi_api_token: ${{ secrets.TEST_PYPI_API_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,18 @@ jobs:
python: "3.10"
name: LOOSE
- os: ubuntu-latest
python: "3.12"
python: "3.13"
name: LOOSE
- os: ubuntu-latest
python: "3.10"
extras: "stable"
name: STABLE
- os: ubuntu-latest
python: "3.12"
python: "3.13"
extras: "stable"
name: STABLE
- os: ubuntu-latest
python: "3.12"
python: "3.13"
pip-flags: "--pre"
name: PRE-RELEASE DEPENDENCIES

Expand Down
Loading