Skip to content

Commit a78d571

Browse files
Merge pull request #57 from glassflow/fix-broken-link
fix docs url
2 parents 3428669 + 645f0a9 commit a78d571

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/setup-python@v5
1818
id: setup-python
1919
with:
20-
python-version-file: "pyproject.toml"
20+
python-version: "3.13"
2121

2222
- name: Install uv
2323
uses: astral-sh/setup-uv@v5
@@ -42,7 +42,7 @@ jobs:
4242
needs: lint
4343
strategy:
4444
matrix:
45-
python-version: ["3.9", "3.10", "3.11"]
45+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
4646
runs-on: ubuntu-latest
4747
permissions:
4848
pull-requests: write
@@ -78,12 +78,12 @@ jobs:
7878
uv run pytest --cov=src --cov-report=term-missing
7979
8080
- name: Generate coverage report
81-
if: matrix.python-version == '3.11'
81+
if: matrix.python-version == '3.13'
8282
run: |
8383
uv run pytest --cov=src --cov-report=xml:coverage.xml
8484
8585
- name: Pytest coverage comment
86-
if: matrix.python-version == '3.11'
86+
if: matrix.python-version == '3.13'
8787
id: coverageComment
8888
uses: MishaKav/pytest-coverage-comment@main
8989
with:
@@ -99,7 +99,7 @@ jobs:
9999
unique-id-for-comment: "python-coverage"
100100

101101
- name: Update README with coverage badge
102-
if: matrix.python-version == '3.11'
102+
if: matrix.python-version == '3.13'
103103
run: |
104104
# Extract coverage percentage and color from the coverageComment step
105105
COVERAGE_PERCENTAGE=$(echo "${{ steps.coverageComment.outputs.coverage }}" | grep -o '[0-9]*%' | tr -d '%')
@@ -115,12 +115,12 @@ jobs:
115115
<!-- Pytest Coverage Comment:End -->" README.md
116116
117117
- name: Clean up coverage file
118-
if: matrix.python-version == '3.11'
118+
if: matrix.python-version == '3.13'
119119
run: |
120120
rm -f coverage.xml
121121
122122
- name: Commit and push README changes
123-
if: matrix.python-version == '3.11'
123+
if: matrix.python-version == '3.13'
124124
uses: actions-js/push@master
125125
with:
126126
github_token: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ pipeline.delete()
216216

217217
## Pipeline Configuration
218218

219-
For detailed information about the pipeline configuration, see [GlassFlow docs](https://docs.glassflow.dev/pipeline/pipeline-configuration).
219+
For detailed information about the pipeline configuration, see [GlassFlow docs](https://docs.glassflow.dev/configuration/pipeline-json-reference).
220220

221221
## Tracking
222222

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ classifiers = [
1717
"Programming Language :: Python :: 3.9",
1818
"Programming Language :: Python :: 3.10",
1919
"Programming Language :: Python :: 3.11",
20+
"Programming Language :: Python :: 3.12",
21+
"Programming Language :: Python :: 3.13",
2022
"Topic :: Software Development :: Libraries :: Python Modules",
2123
]
2224
dependencies = [

0 commit comments

Comments
 (0)