Skip to content

Commit 79ab9c5

Browse files
authored
Fix/test (#9)
* use 3.7.13 * remove poetry install * use poetry install only * remove testrui.py * . * update to 3.7.17
1 parent 840425b commit 79ab9c5

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/docs_to_pages.yml

Lines changed: 1 addition & 1 deletion
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.12'
12+
python-version: '3.7.17'
1313
- name: Install poetry
1414
uses: abatilo/[email protected]
1515
- name: Install docs building dependencies

.github/workflows/publish_on_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Set up Python
1212
uses: actions/setup-python@v3
1313
with:
14-
python-version: '3.7.12'
14+
python-version: '3.7.17'
1515
- name: Install poetry
1616
uses: abatilo/[email protected]
1717
- name: Install project dependencies

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
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.12'
13+
python-version: '3.7.17'
1414
- name: Install Poetry
1515
uses: snok/install-poetry@v1
1616
with:
@@ -23,10 +23,10 @@ jobs:
2323
with:
2424
path: .venv
2525
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
26+
- run: poetry install --no-interaction
2627
- name: Install dependencies
2728
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
2829
run: poetry install -E regular --no-interaction --no-root
29-
- run: poetry install --no-interaction
3030
- name: check style
3131
run: poetry run black . --check
3232
- name: run tests

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ license = "MIT"
1313

1414

1515
[tool.poetry.dependencies]
16-
python = "3.7.12"
16+
python = "3.7.17"
1717
requests = "~2"
1818
tqdm = "~4"
1919
ipywidgets = "~7"
2020
ipython = "*"
2121
ibm-cos-sdk = {version = "~2", optional = true}
22-
typing-extensions = {version = "*", python = "^3.7.12", optional = true}
22+
typing-extensions = {version = "*", python = "^3.7.17", optional = true}
2323
# Sphinx documentation dependencies
2424
Sphinx = { version = "~4", optional = true }
2525
sphinx-autodoc-typehints = { version = "~1", optional = true }

0 commit comments

Comments
 (0)