Skip to content

Commit 2d2c792

Browse files
authoredFeb 13, 2024
bump: python version to 3.11.3 (#15)
* bump: python version to 3.11.3 * revert: 3.8.17 * revert: 3.7.17 * add: newline * remove: tool_versions * update ibm-cos-sdk * bump: 3.11.3 * bump: poetry to 1.7.1 * use: latest actions-poetry for github workflow
1 parent d41fed8 commit 2d2c792

File tree

5 files changed

+1871
-1371
lines changed

5 files changed

+1871
-1371
lines changed
 

‎.github/workflows/docs_to_pages.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v3
1010
- uses: actions/setup-python@v3
1111
with:
12-
python-version: '3.7.17'
12+
python-version: '3.11.3'
1313
- name: Install poetry
1414
uses: abatilo/actions-poetry@v2.0.0
1515
- name: Install docs building dependencies

‎.github/workflows/publish_on_release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
- name: Set up Python
1212
uses: actions/setup-python@v3
1313
with:
14-
python-version: '3.7.17'
14+
python-version: '3.11.3'
1515
- name: Install poetry
16-
uses: abatilo/actions-poetry@v2.0.0
16+
uses: abatilo/actions-poetry@v3.0.0
1717
- name: Install project dependencies
1818
run: |
1919
python3 -m pip install --upgrade pip

‎.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
id: setup-python
1111
uses: actions/setup-python@v3
1212
with:
13-
python-version: '3.7.17'
13+
python-version: '3.11.3'
1414
- name: Install Poetry
1515
uses: snok/install-poetry@v1
1616
with:

‎poetry.lock

+1,863-1,363
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ license = "MIT"
1313

1414

1515
[tool.poetry.dependencies]
16-
python = "3.7.17"
16+
python = "3.11.3"
1717
requests = "~2"
1818
tqdm = "~4"
1919
ipywidgets = "~7"
2020
ipython = "*"
21-
ibm-cos-sdk = {version = "~2", optional = true}
22-
typing-extensions = {version = "*", python = "^3.7.17", optional = true}
21+
ibm-cos-sdk = ">=2.13.3"
22+
typing-extensions = {version = "*", python = "^3.11.3", optional = true}
2323
# Sphinx documentation dependencies
2424
Sphinx = { version = "~4", optional = true }
2525
sphinx-autodoc-typehints = { version = "~1", optional = true }
@@ -45,5 +45,5 @@ testpaths = [
4545
asyncio_mode = "auto"
4646

4747
[build-system]
48-
requires = ["poetry-core>=1.0.0"]
48+
requires = ["poetry-core=1.7.1"]
4949
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)
Please sign in to comment.