Skip to content

Commit 5343118

Browse files
committed
fix: hope
1 parent fdaff11 commit 5343118

3 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- name: Setup Python
13-
uses: actions/setup-python@v5
13+
uses: actions/setup-python@v6
1414
with:
1515
python-version: "3.11"
1616
- name: cache poetry install

.github/workflows/test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
PYSNC_CLIENT_SECRET: ${{ secrets.PYSNC_CLIENT_SECRET }}
2222
steps:
2323
- name: check out repository
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
- name: set up python ${{ matrix.python-version }}
26-
uses: actions/setup-python@v5
26+
uses: actions/setup-python@v6
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929
- name: setup poetry
@@ -58,9 +58,9 @@ jobs:
5858
if: github.ref == 'refs/heads/main'
5959
needs: install-test
6060
steps:
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@v5
6262
- name: Setup Python
63-
uses: actions/setup-python@v5
63+
uses: actions/setup-python@v6
6464
with:
6565
python-version: "3.11"
6666
- name: cache poetry install

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ classifiers = [
1515
'Development Status :: 4 - Beta',
1616
'Intended Audience :: Developers',
1717
'Programming Language :: Python :: 3',
18-
'Programming Language :: Python :: 3.7',
18+
'Programming Language :: Python :: 3.9',
19+
'Programming Language :: Python :: 3.11',
1920
'Operating System :: OS Independent',
2021
]
2122

0 commit comments

Comments
 (0)