Skip to content

Commit 3ae0976

Browse files
committed
Revise CI
1 parent 30ac045 commit 3ae0976

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results
1313
COMPILE: --compile
1414
docker:
15-
- image: cimg/python:3.11
15+
- image: cimg/python:3.10
1616
steps:
1717
- checkout
1818
- restore_cache:

.github/workflows/macos.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
pip install --local -e git+https://github.com/rocky/python-xdis.git#egg=xdis
24+
# Until the next xdis release
25+
pip install --local -e git+https://github.com/rocky/[email protected]#egg=xdis
2526
pip install -e .
2627
pip install -r requirements-dev.txt
2728
- name: Test decompyle3

.github/workflows/ubuntu.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
- uses: actions/checkout@v4
1515
with:
1616
ref: master
17-
- name: Set up Python 3.13
17+
- name: Set up Python 3.10
1818
uses: actions/setup-python@v5
1919
with:
20-
python-version: 3.13
20+
python-version: 3.10
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
2424
# Until the next xdis release
25-
pip install --local -e git+https://github.com/rocky/python-xdis.git#egg=xdis
25+
pip install --local -e git+https://github.com/rocky/python-xdis.git@python-3.6-to-3.10#egg=xdis
2626
pip install -e .
2727
pip install -r requirements-dev.txt
2828
- name: Test decompyle3

.github/workflows/windows.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@ jobs:
1414
- uses: actions/checkout@v4
1515
with:
1616
ref: master
17-
- name: Set up Python 3.13
17+
- name: Set up Python 3.10
1818
uses: actions/setup-python@v5
1919
with:
20-
python-version: 3.13
20+
python-version: 3.10
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
pip install --local -e git+https://github.com/rocky/python-xdis.git#egg=xdis
24+
# Until the next xdis release
25+
pip install git+https://github.com/rocky/[email protected]#egg=xdis
2526
pip install -e .
2627
pip install -r requirements-dev.txt
2728
- name: Test decompyle3

0 commit comments

Comments
 (0)