Skip to content

Commit ffe8637

Browse files
committed
Enforcing 3.11 for building
1 parent b137d03 commit ffe8637

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

.github/workflows/actions.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,12 @@ jobs:
4040
python -m pytest -sv tests
4141
build-and-install:
4242
runs-on: ubuntu-latest
43-
strategy:
44-
fail-fast: false
45-
matrix:
46-
python_version: ["3.9", "3.10", "3.11"]
4743
steps:
4844
- uses: actions/checkout@v4
49-
- name: Set up Python ${{matrix.python_version}}
45+
- name: Set up Python 3.11
5046
uses: actions/setup-python@v5
5147
with:
52-
python-version: ${{matrix.python_version}}
48+
python-version: 3.11
5349
- name: Install uv
5450
run: |
5551
curl -LsSf https://astral.sh/uv/install.sh | sh

.github/workflows/publish.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,12 @@ env:
2121
jobs:
2222
deploy:
2323
runs-on: ubuntu-latest
24-
strategy:
25-
fail-fast: false
26-
matrix:
27-
python_version: ["3.9", "3.10", "3.11"]
2824
steps:
2925
- uses: actions/checkout@v4
30-
- name: Set up Python ${{matrix.python_version}}
26+
- name: Set up Python 3.11
3127
uses: actions/setup-python@v5
3228
with:
33-
python-version: ${{matrix.python_version}}
29+
python-version: 3.11
3430
- name: Install uv
3531
run: |
3632
curl -LsSf https://astral.sh/uv/install.sh | sh

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ celerybeat.pid
125125
.env
126126
.venv
127127
.pyenv
128+
.testenv
128129
env/
129130
venv/
130131
ENV/

0 commit comments

Comments
 (0)