Skip to content

Commit de3a8bc

Browse files
committed
Merge branch 'master' into python-3.7-to-3.10
2 parents 55f6980 + 936ea1f commit de3a8bc

File tree

2 files changed

+61
-4
lines changed

2 files changed

+61
-4
lines changed

.circleci/config.yml

Lines changed: 56 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ jobs:
1212
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results
1313
COMPILE: --compile
1414
docker:
15+
<<<<<<< HEAD
1516
- image: cimg/python:3.10
17+
=======
18+
- image: cimg/python:3.13
19+
>>>>>>> master
1620
steps:
1721
- checkout
1822
- restore_cache:
@@ -21,11 +25,18 @@ jobs:
2125
- v1-dep-master-
2226
- v1-dep-
2327
- run: sudo apt update
28+
<<<<<<< HEAD
2429
- run: sudo apt install python3-pip
2530
# Until the next xdis release
2631
- run: sudo pip install git+https://github.com/rocky/[email protected]#egg=xdis
2732
- run: sudo pip install -e .
2833
- run: sudo pip install pytest
34+
=======
35+
# Until the next xdis release...
36+
- run: pip install git+https://github.com/rocky/python-xdis#egg=xdis
37+
- run: pip install -e .
38+
- run: pip install pytest
39+
>>>>>>> master
2940
- save_cache:
3041
key: v1-dep-{{ .Branch }}-{{ epoch }}
3142
paths:
@@ -46,6 +57,7 @@ jobs:
4657
- store_artifacts:
4758
path: /tmp/circleci-test-results
4859

60+
<<<<<<< HEAD
4961
build-python-3-8:
5062
working_directory: ~/rocky/python-decompyle3
5163
parallelism: 1
@@ -84,6 +96,46 @@ jobs:
8496
path: /tmp/circleci-artifacts
8597
- store_artifacts:
8698
path: /tmp/circleci-test-results
99+
=======
100+
# build-python-3-8:
101+
# working_directory: ~/rocky/python-decompyle3
102+
# parallelism: 1
103+
# shell: /bin/bash --login
104+
# environment:
105+
# CIRCLE_ARTIFACTS: /tmp/circleci-artifacts
106+
# CIRCLE_TEST_REPORTS: /tmp/circleci-test-results
107+
# COMPILE: --compile
108+
# docker:
109+
# - image: circleci/python:3.8
110+
# steps:
111+
# - checkout
112+
# - restore_cache:
113+
# keys:
114+
# - v1-dep-{{ .Branch }}-
115+
# - v1-dep-master-
116+
# - v1-dep-
117+
# - run: sudo pip install git+https://github.com/rocky/python-xdis#egg=xdis
118+
# - run: sudo pip install -e .
119+
# - run: sudo pip install pytest
120+
# - save_cache:
121+
# key: v1-dep-{{ .Branch }}-{{ epoch }}
122+
# paths:
123+
# - vendor/bundle
124+
# - ~/virtualenvs
125+
# - ~/.m2
126+
# - ~/.ivy2
127+
# - ~/.bundle
128+
# - ~/.go_workspace
129+
# - ~/.gradle
130+
# - ~/.cache/bower
131+
# - run: sudo python ./setup.py install && make check
132+
# - store_test_results:
133+
# path: /tmp/circleci-test-results
134+
# - store_artifacts:
135+
# path: /tmp/circleci-artifacts
136+
# - store_artifacts:
137+
# path: /tmp/circleci-test-results
138+
>>>>>>> master
87139

88140
workflows:
89141
version: 2
@@ -93,7 +145,7 @@ workflows:
93145
filters:
94146
branches:
95147
only: master
96-
- build-python-3-8:
97-
filters:
98-
branches:
99-
only: python-3.7-to-3.10
148+
# - build-python-3-8:
149+
# filters:
150+
# branches:
151+
# only: python-3.7-to-3.10

admin-tools/install-all-3.7-3.10.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,13 @@ fi
2121

2222
cd ../dist/
2323

24+
<<<<<<< HEAD
2425
install_file="python-control-flow_37-${__version__}.tar.gz"
2526
install_check_command="python-cfg --version"
27+
=======
28+
install_file="decompyle3_37-${__version__}.tar.gz"
29+
install_check_command="decompyle3 --version"
30+
>>>>>>> master
2631
for version in $PYVERSIONS; do
2732
echo "*** Installing ${install_file} for Python ${version} ***"
2833
echo $version

0 commit comments

Comments
 (0)