Skip to content

Commit 289c1db

Browse files
author
AI
committed
fix dependency issues
1 parent e994c1a commit 289c1db

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- name: Checkout repository
1616
uses: actions/checkout@v3
1717

18-
- name: Set up Python 3.9
18+
- name: Set up Python 3.10
1919
uses: actions/setup-python@v4
2020
with:
21-
python-version: 3.9
21+
python-version: 3.10
2222

2323
- name: install flit
2424
run: pip install flit

.github/workflows/test-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up Python
2222
uses: actions/setup-python@v5
2323
with:
24-
python-version: "3.9"
24+
python-version: "3.10"
2525
- name: Install dependencies
2626
run: |
2727
pip install flit uv

.github/workflows/test-merge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: test
1+
name: test-merge
22

33
on:
44
pull_request:
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Python
2323
uses: actions/setup-python@v5
2424
with:
25-
python-version: "3.9"
25+
python-version: "3.10"
2626
- name: Install dependencies
2727
run: |
2828
pip install uv

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "gib-lang"
77
dynamic = ["version", "description"]
88
readme = "README.md"
99
license = {file = "LICENSE"}
10-
requires-python = ">=3.9"
10+
requires-python = ">=3.10"
1111
dependencies = []
1212
authors = [{name = "Alifa Izzan Akhsani"}]
1313
keywords = ["esolang", "turing machine", "interpreter" ,"gibberish"]
@@ -35,7 +35,7 @@ dev = [
3535

3636
[tool.tox]
3737
requires = ["tox>=4.0.0"]
38-
envs = ["py39", "py310", "py311","py312","py313", "py314","lint"]
38+
envs = ["py310", "py311","py312","py313", "py314","lint"]
3939

4040
[tool.tox.env_run_base]
4141
uv_resolution = "lowest-direct"

0 commit comments

Comments
 (0)