Skip to content

Commit 22de2fa

Browse files
Add pyproject name (#1)
* Add pyproject name * Update push workflow to use poetry==1.8.5 --------- Co-authored-by: Adam Lowry <[email protected]>
1 parent 5f46ecb commit 22de2fa

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

.github/workflows/push.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
python-version: "3.11"
1313
- name: Install dependencies
1414
run: |
15-
python -m pip install --upgrade pip poetry
15+
python -m pip install --upgrade pip poetry==1.8.5
1616
poetry install
1717
- name: Lint
1818
run: |
@@ -31,7 +31,7 @@ jobs:
3131
python-version: ${{ matrix.python-version }}
3232
- name: Install dependencies
3333
run: |
34-
python -m pip install --upgrade pip poetry
34+
python -m pip install --upgrade pip poetry==1.8.5
3535
poetry install
3636
- name: Test
3737
run: poetry run pytest

pyproject.toml

+9-7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
requires = ["poetry-core>=1.0.0"]
33
build-backend = "poetry.core.masonry.api"
44

5+
[project]
6+
name = "jsonstar"
7+
8+
[project.urls]
9+
Homepage = "https://github.com/routablehq/python-jsonstar"
10+
Documentation = "https://github.com/routablehq/python-jsonstar"
11+
Repository = "https://github.com/henriqroutablehquebastos/python-jsonstar"
12+
Issues = "https://github.com/routablehq/python-jsonstar/issues"
13+
514
[tool.black]
615
line-length = 120
716
target-version = ['py311']
@@ -50,13 +59,6 @@ classifiers = [
5059
"Topic :: Software Development :: Libraries :: Python Modules",
5160
]
5261

53-
[project.urls]
54-
Homepage = "https://github.com/henriquebastos/python-jsonstar"
55-
Documentation = "https://github.com/henriquebastos/python-jsonstar"
56-
Repository = "https://github.com/henriquebastos/python-jsonstar"
57-
Issues = "https://github.com/henriquebastos/python-jsonstar/issues"
58-
59-
6062
[tool.poetry.dependencies]
6163
python = ">=3.9"
6264

0 commit comments

Comments
 (0)