Skip to content
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

update deps to work with python3.10 #3379

Merged
merged 5 commits into from
Oct 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/js-sdk-check-wheel.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This workflow will clean install Python dependencies, build the wheel from pyproject.toml
# This workflow will clean install Python dependencies, build the wheel from pyproject.toml
# and confirm that it has the right stuff and it can install correctly using pip.
# For more information see:
# https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
Expand All @@ -18,14 +18,14 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-18.04, ubuntu-20.04]
python-version: [3.6, 3.7, 3.8]
os: [ubuntu-20.04]
python-version: [3.7, 3.8, 3.9]
experimental: [false]
#include:
# - python-version: 3.9
# os: ubuntu-20.04
# experimental: true
# name: Experimental build - latest Python
include:
- python-version: '3.10'
os: ubuntu-22.04
experimental: true
name: Experimental build - latest Python
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/js-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ jobs:
fail-fast: false
# max-parallel: 9
matrix:
os: [ubuntu-18.04, ubuntu-20.04]
python-version: [3.6, 3.7, 3.8]
os: [ubuntu-20.04]
python-version: [3.7, 3.8, 3.9]
experimental: [false]
include:
- os: ubuntu-20.04
python-version: 3.8
experimental: true
- os: ubuntu-22.04
python-version: '3.10'
experimental: false
name: Experimental build - latest Ubuntu
- os: ubuntu-20.04
python-version: 3.9
experimental: true
name: Experimental build - latest Python
# - os: ubuntu-22.04
# python-version: 3.11
# experimental: true
# name: Experimental build - latest Python
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/js-sdk_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

name: js-sdk_macos

on:
on:
workflow_dispatch:

jobs:
Expand All @@ -14,7 +14,7 @@ jobs:
# max-parallel: 9
matrix:
os: [macos-10.15]
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, '3.10']
experimental: [true]
steps:
- uses: actions/checkout@master
Expand Down
2 changes: 1 addition & 1 deletion jumpscale/clients/stellar/stellar.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def _find_escrow_accounts(self, address=None):
address = self.address
escrow_accounts = []
accounts_endpoint = self._get_horizon_server().accounts()
accounts_endpoint.signer(address)
accounts_endpoint.for_signer(address)
old_cursor = "old"
new_cursor = ""
while new_cursor != old_cursor:
Expand Down
Loading