Skip to content

Commit e72fdc8

Browse files
authored
Update python versions (#43)
* Include Python 3.13 * Remove EOL Python 3.8 * Add coverage files to gitignore
1 parent 4d4ff1d commit e72fdc8

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/coverage.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ jobs:
1313
strategy:
1414
matrix:
1515
python-version:
16-
- '3.8'
16+
- '3.9'
1717
- '3.10'
1818
- '3.11'
1919
- '3.12'
20+
- '3.13'
2021

2122
steps:
2223
- uses: actions/checkout@v4

.github/workflows/package.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@ jobs:
1212
strategy:
1313
matrix:
1414
python-version:
15-
- '3.8'
15+
- '3.9'
1616
- '3.10'
1717
- '3.11'
1818
- '3.12'
19+
- '3.13'
1920
name: Python ${{ matrix.python-version }}
2021
steps:
2122
- uses: actions/checkout@v4

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ robot_folders.egg-info
77
src/robot_folders/build/
88
build/
99
dist/
10+
.coverage
11+
coverage.xml

0 commit comments

Comments
 (0)