Skip to content

Commit 6ebad6d

Browse files
committed
Fix version numbers for publishing
1 parent 99cc0c4 commit 6ebad6d

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/compatibility.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Set up Go 1.15
2929
uses: actions/setup-go@v2
3030
with:
31-
go-version: 1.15
31+
go-version: "1.15"
3232
id: go
3333

3434
- name: Install age
@@ -41,7 +41,7 @@ jobs:
4141
- name: Set up Python 3.10
4242
uses: actions/setup-python@v4
4343
with:
44-
python-version: 3.10
44+
python-version: "3.10"
4545

4646
- name: Install pyage
4747
run: |

.github/workflows/publish-testpypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python 3.10
1717
uses: actions/setup-python@v4
1818
with:
19-
python-version: 3.10
19+
python-version: "3.10"
2020

2121
- name: Install pyage
2222
run: |

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Python 3.10
1616
uses: actions/setup-python@v4
1717
with:
18-
python-version: 3.10
18+
python-version: "3.10"
1919

2020
- name: Install pyage
2121
run: |

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ classifiers =
2727
Programming Language :: Python :: 3.7
2828
Programming Language :: Python :: 3.8
2929
Programming Language :: Python :: 3.9
30+
Programming Language :: Python :: 3.10
31+
Programming Language :: Python :: 3.11
3032

3133
[options]
3234
package_dir=

0 commit comments

Comments
 (0)