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

feat: update support version, bump version #97

Merged
merged 2 commits into from
Nov 12, 2023
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
32 changes: 16 additions & 16 deletions .github/workflows/check_pre-merge_develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-11.0, windows-2019, windows-2022, ubuntu-20.04, ubuntu-22.04]
py-ver: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9']
os: ['macos-11', 'macos-12', 'macos-13', 'windows-2019', 'windows-2022', 'ubuntu-20.04', 'ubuntu-22.04']
py-ver: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10']

steps:
- uses: actions/checkout@v3
Expand All @@ -40,6 +40,9 @@ jobs:
python-version: ${{ matrix.py-ver }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install setuptools
if: ${{ matrix.py-ver == '3.12' }}
run: pip install --user setuptools
- name: build
run: python setup.py build
- name: copy dll
Expand All @@ -59,33 +62,27 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-11.0, windows-2019, windows-2022, ubuntu-22.04, ubuntu-20.04]
py-ver: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9']
os: ['macos-11', 'macos-12', 'macos-13', 'windows-2019', 'windows-2022', 'ubuntu-20.04', 'ubuntu-22.04']
py-ver: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10']
include:
- os: windows-2019
py-ver: '3.7'
package-path: 'c:\users\runneradmin\appdata\roaming\python\python37\site-packages'
- os: windows-2019
py-ver: 'pypy-3.7'
package-path: 'c:\users\runneradmin\appdata\roaming\pypy\pypy37\site-packages'
- os: windows-2019
py-ver: 'pypy-3.8'
package-path: 'c:\users\runneradmin\appdata\roaming\pypy\pypy38\site-packages'
- os: windows-2019
py-ver: 'pypy-3.9'
package-path: 'c:\users\runneradmin\appdata\roaming\pypy\pypy39\site-packages'
- os: windows-2022
py-ver: '3.7'
package-path: 'c:\users\runneradmin\appdata\roaming\python\python37\site-packages'
- os: windows-2022
py-ver: 'pypy-3.7'
package-path: 'c:\users\runneradmin\appdata\roaming\pypy\pypy37\site-packages'
- os: windows-2019
py-ver: 'pypy-3.10'
package-path: 'c:\users\runneradmin\appdata\roaming\pypy\pypy310\site-packages'
- os: windows-2022
py-ver: 'pypy-3.8'
package-path: 'c:\users\runneradmin\appdata\roaming\pypy\pypy38\site-packages'
- os: windows-2022
py-ver: 'pypy-3.9'
package-path: 'c:\users\runneradmin\appdata\roaming\pypy\pypy39\site-packages'
- os: windows-2022
py-ver: 'pypy-3.10'
package-path: 'c:\users\runneradmin\appdata\roaming\pypy\pypy310\site-packages'

steps:
- uses: actions/checkout@v3
Expand All @@ -97,6 +94,9 @@ jobs:
run: python -c "import sys; print(sys.version)"
- name: install pip
run: python -m pip install -U pip
- name: Install setuptools
if: ${{ matrix.py-ver == '3.12' }}
run: pip install --user setuptools
- name: install
run: pip install --user .
- name: dump info
Expand Down
34 changes: 18 additions & 16 deletions .github/workflows/check_pre-merge_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- master
- stable_v*
- test/CI-*
paths-ignore:
- '.github/workflows/create_release-and-upload.yml'
- '.github/workflows/code_scanner.yml'
Expand All @@ -29,8 +30,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-11.0, windows-2019, windows-2022, ubuntu-20.04, ubuntu-22.04]
py-ver: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9']
os: ['macos-11', 'macos-12', 'macos-13', 'windows-2019', 'windows-2022', 'ubuntu-20.04', 'ubuntu-22.04']
py-ver: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10']

steps:
- uses: actions/checkout@v3
Expand All @@ -40,6 +41,9 @@ jobs:
python-version: ${{ matrix.py-ver }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install setuptools
if: ${{ matrix.py-ver == '3.12' }}
run: pip install --user setuptools
- name: build
run: python setup.py build
- name: copy dll
Expand All @@ -59,33 +63,28 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-11.0, windows-2019, windows-2022, ubuntu-22.04, ubuntu-20.04]
py-ver: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9']
os: ['macos-11', 'macos-12', 'macos-13', 'windows-2019', 'windows-2022', 'ubuntu-20.04', 'ubuntu-22.04']
# py-ver: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10']
py-ver: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.8', 'pypy-3.9']
include:
- os: windows-2019
py-ver: '3.7'
package-path: 'c:\users\runneradmin\appdata\roaming\python\python37\site-packages'
- os: windows-2019
py-ver: 'pypy-3.7'
package-path: 'c:\users\runneradmin\appdata\roaming\pypy\pypy37\site-packages'
- os: windows-2019
py-ver: 'pypy-3.8'
package-path: 'c:\users\runneradmin\appdata\roaming\pypy\pypy38\site-packages'
- os: windows-2019
py-ver: 'pypy-3.9'
package-path: 'c:\users\runneradmin\appdata\roaming\pypy\pypy39\site-packages'
- os: windows-2022
py-ver: '3.7'
package-path: 'c:\users\runneradmin\appdata\roaming\python\python37\site-packages'
- os: windows-2022
py-ver: 'pypy-3.7'
package-path: 'c:\users\runneradmin\appdata\roaming\pypy\pypy37\site-packages'
# - os: windows-2019
# py-ver: 'pypy-3.10'
# package-path: 'c:\users\runneradmin\appdata\roaming\Python\PyPy310\site-packages'
- os: windows-2022
py-ver: 'pypy-3.8'
package-path: 'c:\users\runneradmin\appdata\roaming\pypy\pypy38\site-packages'
- os: windows-2022
py-ver: 'pypy-3.9'
package-path: 'c:\users\runneradmin\appdata\roaming\pypy\pypy39\site-packages'
# - os: windows-2022
# py-ver: 'pypy-3.10'
# package-path: 'c:\users\runneradmin\appdata\roaming\Python\PyPy310\site-packages'

steps:
- uses: actions/checkout@v3
Expand All @@ -97,6 +96,9 @@ jobs:
run: python -c "import sys; print(sys.version)"
- name: install pip
run: python -m pip install -U pip
- name: Install setuptools
if: ${{ matrix.py-ver == '3.12' }}
run: pip install --user setuptools
- name: install
run: pip install --user .
- name: dump info
Expand Down
25 changes: 14 additions & 11 deletions .github/workflows/check_pre-merge_sprint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ on:
- features/sprint*

env:
GITHUB_VERSION: v0.2.3
GITHUB_BITCOIN_VERSION: v0.2.3
GITHUB_VERSION: v0.2.5
GITHUB_BITCOIN_VERSION: v0.2.5
GITHUB_DOCKER_IMAGE: ghcr.io/cryptogarageinc/elements-testing
ENTRYPOINT_PATH: /github/workspace/.github/workflows/docker/test_entrypoint.sh
BITCOIN_ENTRYPOINT_PATH: /github/workspace/.github/workflows/docker/test_bitcoin_entrypoint.sh
Expand All @@ -27,19 +27,19 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-11.0, windows-2019, windows-2022, ubuntu-20.04, ubuntu-22.04]
py-ver: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9']
os: ['macos-11', 'macos-12', 'macos-13', 'windows-2019', 'windows-2022', 'ubuntu-20.04', 'ubuntu-22.04']
py-ver: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10']
exclude:
- os: macos-11.0
py-ver: '3.7'
- os: macos-11.0
py-ver: '3.8'
- os: macos-11
py-ver: '3.9'
- os: macos-11
py-ver: '3.10'
- os: windows-2019
py-ver: '3.8'
py-ver: '3.9'
- os: windows-2019
py-ver: 'pypy-3.8'
py-ver: 'pypy-3.9'
- os: windows-2022
py-ver: '3.8'
py-ver: '3.9'

steps:
- uses: actions/checkout@v3
Expand All @@ -49,6 +49,9 @@ jobs:
python-version: ${{ matrix.py-ver }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install setuptools
if: ${{ matrix.py-ver == '3.12' }}
run: pip install --user setuptools
- name: build
run: python setup.py build
- name: copy dll
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create_release-and-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ jobs:
os: [macos-11, windows-2019, ubuntu-20.04]
include:
- os: macos-11
py-ver: 3.7
py-ver: 3.8
pl-name: macosx_11_0_x86_64
- os: ubuntu-20.04
py-ver: 3.7
py-ver: 3.8
pl-name: linux_x86_64
- os: windows-2019
py-ver: 3.8
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.3
0.4.4
Loading