Skip to content

Commit 2f9fa4a

Browse files
try to found version of tarantool; fix for bdist_wheel
1 parent ed5a21f commit 2f9fa4a

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/packing.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@ jobs:
3838
python-version: '3.11'
3939

4040
- name: Install tools for packing and verification
41-
run: pip3 install wheel twine
41+
run: |
42+
pip3 install wheel twine
43+
pip3 install --upgrade setuptools
44+
# SetuptoolsDeprecationWarning: setuptools.installer is deprecated.
45+
# Requirements should be satisfied by a PEP 517 installer.
4246

4347
- name: Pack source and binary files
4448
run: make pip-dist

.github/workflows/testing.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,8 @@ jobs:
306306
shell: wsl-bash_Ubuntu-22.04 {0}
307307
run: |
308308
curl -L https://tarantool.io/release/3/installer.sh | bash -s
309-
sudo apt install -y tarantool=${{ matrix.tarantool }} tarantool-dev=${{ matrix.tarantool }}
309+
sudo apt install -y tarantool tarantool-dev
310+
tarantool --version
310311
311312
- name: Setup test tarantool instance
312313
shell: wsl-bash_Ubuntu-22.04 {0}

0 commit comments

Comments
 (0)