Skip to content

Commit 9c7520c

Browse files
committed
test
1 parent c1c7c08 commit 9c7520c

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

.github/workflows/python-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
12+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1313

1414
name: "Build and test"
1515
runs-on: ubuntu-latest

.github/workflows/python-packages.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
tags:
66
- "v[0-9]+\\.[0-9]+\\.[0-9]+"
77
- "v[0-9]+\\.[0-9]+\\.[0-9]+-[0-9]+"
8+
branches:
9+
- support-py314
810

911
jobs:
1012

@@ -23,7 +25,7 @@ jobs:
2325
- name: "Set up Python"
2426
uses: actions/setup-python@v6
2527
with:
26-
python-version: "3.13"
28+
python-version: "3.14"
2729

2830
- name: "Install python dependencies"
2931
run: |
@@ -108,14 +110,14 @@ jobs:
108110

109111
- name: "Download artifacts"
110112
uses: actions/download-artifact@v6
113+
with:
114+
path: dist/
111115

112-
- name: "Move packages to the dist/ folder"
116+
- name: "List packages"
113117
run: |
114-
mkdir dist/
115-
mv sdist/* dist/
116-
mv wheels-*/*.whl dist/
118+
find . -name "*.whl" -o -name "*.tar.gz"
117119
118-
- name: "Publish packages on PyPI"
119-
uses: pypa/gh-action-pypi-publish@release/v1
120-
with:
121-
password: ${{ secrets.PYPI_API_TOKEN }}
120+
#- name: "Publish packages on PyPI"
121+
# uses: pypa/gh-action-pypi-publish@release/v1
122+
# with:
123+
# password: ${{ secrets.PYPI_API_TOKEN }}

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def lint(session):
2222
)
2323

2424

25-
@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13"], reuse_venv=True)
25+
@nox.session(python=["3.10", "3.11", "3.12", "3.13", "3.14"], reuse_venv=True)
2626
def test(session):
2727
session.install("pytest")
2828
session.install(".")

0 commit comments

Comments
 (0)