Skip to content

Commit 0079757

Browse files
committed
Fix workflows and project configuration
Signed-off-by: Santiago Dueñas <sduenas@bitergia.com>
1 parent d0aeec9 commit 0079757

3 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
name: Python ${{ matrix.python-version }} for ES ${{ matrix.elasticsearch-version }}
3333
strategy:
3434
matrix:
35-
python-version: [3.9, 3.10, 3.11]
35+
python-version: ['3.9', '3.10', '3.11']
3636

3737
steps:
3838
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # 3.1.0

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
strategy:
2727
matrix:
28-
python-version: [3.9, 3.10, 3.11]
28+
python-version: ['3.9', '3.10', '3.11']
2929

3030
runs-on: ubuntu-latest
3131
name: Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@ keywords = [
1717
"sortinghat"
1818
]
1919

20-
packages = [
21-
{ include = "sortinghat" },
22-
{ include = "tests", format = "sdist" },
23-
]
24-
2520
classifiers = [
2621
"Development Status :: 4 - Beta",
2722
"Intended Audience :: Developers",
@@ -36,6 +31,12 @@ dependencies = [
3631
"sortinghat (>=1.10.0,<2.0.0)"
3732
]
3833

34+
[tool.poetry]
35+
packages = [
36+
{ include = "sortinghat" },
37+
{ include = "tests", format = "sdist" },
38+
]
39+
3940
[tool.poetry.group.dev.dependencies]
4041
flake8 = "4.0.1"
4142
httpretty = "1.1.4"

0 commit comments

Comments
 (0)