Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 51
Dependencies update patch#223
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Uh oh!
There was an error while loading. Please reload this page.
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
6845418
ci: remove unused msgpack variable in EE test
DifferentialOrange 39793c1
deps: bump msgpack requirement to 1.0.4
DifferentialOrange aa6dd4e
deps: bump test PyYAML requirement to 6.0
DifferentialOrange f2e2baa
ci: install Tarantool 2.10 with GitHub Actions
DifferentialOrange File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -25,9 +25,8 @@ jobs: | ||
| tarantool: | ||
| - '1.10' | ||
| - '2.8' | ||
| - '2.x-latest' | ||
| - '2.10' | ||
oleg-jukovec marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| python: | ||
| - '3.5' | ||
| - '3.6' | ||
| - '3.7' | ||
| - '3.8' | ||
| @@ -53,40 +52,29 @@ jobs: | ||
| msgpack-deps: 'msgpack==0.6.2' | ||
| - tarantool: '2.8' | ||
| python: '3.10' | ||
| msgpack-deps: 'msgpack==1.0.0' | ||
| msgpack-deps: 'msgpack==1.0.4' | ||
| steps: | ||
| - name: Clone the connector | ||
| uses: actions/checkout@v2 | ||
| - name: Install tarantool ${{ matrix.tarantool }} | ||
| if: matrix.tarantool != '2.x-latest' | ||
| uses: tarantool/setup-tarantool@v1 | ||
| with: | ||
| tarantool-version: ${{ matrix.tarantool }} | ||
| - name: Install latest tarantool 2.x | ||
| if: matrix.tarantool == '2.x-latest' | ||
| run: | | ||
| curl -L https://tarantool.io/pre-release/2/installer.sh | sudo bash | ||
| sudo apt install -y tarantool tarantool-dev | ||
| - name: Setup Python for tests | ||
| uses: actions/setup-python@v2 | ||
| with: | ||
| python-version: ${{ matrix.python }} | ||
| - name: Install specific version of msgpack package | ||
| if: startsWith(matrix.msgpack-deps, 'msgpack==') == true | ||
| run: | | ||
| pip install ${{ matrix.msgpack-deps }} | ||
| - name: Install specific version of msgpack-python package | ||
| # msgpack package is a replacement for deprecated msgpack-python. | ||
| # To test compatibility with msgpack-python we must ignore | ||
| # requirements.txt install of msgpack package by overwriting it | ||
| # with sed. | ||
| if: startsWith(matrix.msgpack-deps, 'msgpack-python==') == true | ||
| # We want to enforce using modern msgpack since it has | ||
| # various vulnerability fixes. But the code is compatible | ||
| # with older msgpack versions and msgpack-python package. | ||
| # To this test compatibility we must ignore requirements.txt | ||
| # install of the newer msgpack package by overwriting it with sed. | ||
| if: matrix.msgpack-deps != '' | ||
| run: | | ||
| pip install ${{ matrix.msgpack-deps }} | ||
| sed -i -e "s/^msgpack.*$/${{ matrix.msgpack-deps }}/" requirements.txt | ||
| @@ -122,10 +110,7 @@ jobs: | ||
| - '1.10.11-0-gf0b0e7ecf-r470' | ||
| - '2.8.3-21-g7d35cd2be-r470' | ||
| - '2.10.0-1-gfa775b383-r486-linux-x86_64' | ||
| python: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10'] | ||
| msgpack-deps: | ||
| # latest msgpack will be installed as a part of requirements.txt | ||
| - '' | ||
| python: ['3.6', '3.7', '3.8', '3.9', '3.10'] | ||
| steps: | ||
| - name: Clone the connector | ||
| @@ -150,21 +135,6 @@ jobs: | ||
| with: | ||
| python-version: ${{ matrix.python }} | ||
| - name: Install specific version of msgpack package | ||
| if: startsWith(matrix.msgpack-deps, 'msgpack==') == true | ||
| run: | | ||
| pip install ${{ matrix.msgpack-deps }} | ||
| - name: Install specific version of msgpack-python package | ||
| # msgpack package is a replacement for deprecated msgpack-python. | ||
| # To test compatibility with msgpack-python we must ignore | ||
| # requirements.txt install of msgpack package by overwriting it | ||
| # with sed. | ||
| if: startsWith(matrix.msgpack-deps, 'msgpack-python==') == true | ||
| run: | | ||
| pip install ${{ matrix.msgpack-deps }} | ||
| sed -i -e "s/^msgpack.*$/${{ matrix.msgpack-deps }}/" requirements.txt | ||
| - name: Install package requirements | ||
| run: pip install -r requirements.txt | ||
| @@ -196,6 +166,7 @@ jobs: | ||
| tarantool: | ||
| - '1.10' | ||
| - '2.8' | ||
| - '2.10.0.g0a5ce0b9c-1' | ||
| python: | ||
| - '3.10' | ||
| @@ -219,12 +190,20 @@ jobs: | ||
| with: | ||
| distribution: Ubuntu-20.04 | ||
| - name: Install tarantool ${{ matrix.tarantool }} for WSL | ||
| - name: Install tarantool ${{ matrix.tarantool }} for WSL (2.8 and older) | ||
| if: (matrix.tarantool == '1.10') || (matrix.tarantool == '2.8') | ||
| shell: wsl-bash_Ubuntu-20.04 {0} | ||
| run: | | ||
| curl -L https://tarantool.io/installer.sh | VER=${{ matrix.tarantool }} bash -s -- --type "release" | ||
| sudo apt install -y tarantool tarantool-dev | ||
| - name: Install tarantool ${{ matrix.tarantool }} for WSL (2.10 and newer) | ||
| if: (matrix.tarantool != '1.10') && (matrix.tarantool != '2.8') | ||
| shell: wsl-bash_Ubuntu-20.04 {0} | ||
| run: | | ||
| curl -L https://tarantool.io/release/2/installer.sh | bash -s | ||
| sudo apt install -y tarantool=${{ matrix.tarantool }} tarantool-dev=${{ matrix.tarantool }} | ||
| - name: Setup test tarantool instance | ||
| shell: wsl-bash_Ubuntu-20.04 {0} | ||
| run: | | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,2 @@ | ||
| dbapi-compliance==1.15.0 | ||
| # Use this pyyaml version to be compatible with Python34-x64 on Windows. | ||
| # See for more details http://help.appveyor.com/discussions/problems/28023. | ||
| pyyaml==5.2b1 | ||
| pyyaml==6.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| msgpack>=0.4.0 | ||
| msgpack>=1.0.4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.