Skip to content

Commit 65b749b

Browse files
build(version): update versions and readmes
1 parent a84cd6c commit 65b749b

File tree

11 files changed

+76
-502
lines changed

11 files changed

+76
-502
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 6.0.1
2+
current_version = 6.1.0
33
commit = True
44
message = Bump version: {current_version} → {new_version} [skip ci]
55

.github/workflows/build-test.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
runs-on: ${{ matrix.os }}
2222
strategy:
2323
matrix:
24-
python-version: ['3.7', '3.8', '3.9']
24+
python-version: ['3.9', '3.10', '3.11']
2525
os: [ubuntu-latest, windows-latest]
2626
exclude:
2727
- os: windows-latest
28-
python-version: '3.7'
28+
python-version: '3.9'
2929

3030
steps:
3131
- uses: actions/checkout@v2
@@ -45,33 +45,33 @@ jobs:
4545
pip3 install -r requirements.txt --use-deprecated=legacy-resolver
4646
pip3 install -r requirements-dev.txt --use-deprecated=legacy-resolver
4747
pip3 install --editable . --use-deprecated=legacy-resolver
48-
- name: Execute Python 3.7 unit tests
49-
if: matrix.python-version == '3.7'
48+
- name: Execute Python 3.9 unit tests
49+
if: matrix.python-version == '3.9'
5050
run: |
5151
pip3 install -U python-dotenv
5252
py.test test/unit
53-
- name: Execute Python 3.8 unit tests (windows)
54-
if: matrix.python-version == '3.8' && matrix.os == 'windows-latest'
53+
- name: Execute Python 3.10 unit tests (windows)
54+
if: matrix.python-version == '3.10' && matrix.os == 'windows-latest'
5555
run: |
5656
pip3 install -U python-dotenv
5757
py.test test/unit --reruns 3
58-
- name: Execute Python 3.8 unit tests (ubuntu)
59-
if: matrix.python-version == '3.8' && matrix.os == 'ubuntu-latest'
58+
- name: Execute Python 3.10 unit tests (ubuntu)
59+
if: matrix.python-version == '3.10' && matrix.os == 'ubuntu-latest'
6060
run: |
6161
pip3 install -U python-dotenv
6262
py.test test/unit --reruns 3 --cov=ibm_watson
63-
- name: Execute Python 3.9 unit tests (windows)
64-
if: matrix.python-version == '3.9' && matrix.os == 'windows-latest'
63+
- name: Execute Python 3.11 unit tests (windows)
64+
if: matrix.python-version == '3.11' && matrix.os == 'windows-latest'
6565
run: |
6666
pip3 install -U python-dotenv
6767
py.test test/unit --reruns 3
68-
- name: Execute Python 3.9 unit tests (ubuntu)
69-
if: matrix.python-version == '3.9' && matrix.os == 'ubuntu-latest'
68+
- name: Execute Python 3.11 unit tests (ubuntu)
69+
if: matrix.python-version == '3.11' && matrix.os == 'ubuntu-latest'
7070
run: |
7171
pip3 install -U python-dotenv
7272
py.test test/unit --reruns 3
7373
- name: Upload coverage to Codecov
74-
if: matrix.python-version == '3.8' && matrix.os == 'ubuntu-latest'
74+
if: matrix.python-version == '3.10' && matrix.os == 'ubuntu-latest'
7575
uses: codecov/codecov-action@v1
7676
with:
7777
name: py${{ matrix.python-version }}-${{ matrix.os }}

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Set up Python
3030
uses: actions/setup-python@v2
3131
with:
32-
python-version: '3.9'
32+
python-version: '3.11'
3333

3434
- name: Setup Node
3535
uses: actions/setup-node@v1

.github/workflows/integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
python-version: ["3.8"]
18+
python-version: ["3.11"]
1919
os: [ubuntu-latest]
2020

2121
steps:

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ If you want to contribute to the repository, here's a quick guide:
2020
- Only use spaces for indentation.
2121
- Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change.
2222
- Check for unnecessary whitespace with `git diff --check` before committing.
23-
- Make sure your code supports Python 3.7, 3.8, 3.9. You can use `pyenv` and `tox` for this
23+
- Make sure your code supports Python 3.9, 3.10, 3.11. You can use `pyenv` and `tox` for this
2424
1. Make the test pass
2525
1. Commit your changes
2626

MIGRATION-V4.md

Lines changed: 0 additions & 215 deletions
This file was deleted.

0 commit comments

Comments
 (0)