Skip to content

Commit 245c6cc

Browse files
committed
refactor: Consolidate gp_libs/* to src/gp_libs.py
Including what would traditionally be placed in __about__.py
1 parent b578942 commit 245c6cc

File tree

4 files changed

+2
-14
lines changed

4 files changed

+2
-14
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
# package data
2121
about: t.Dict[str, str] = {}
22-
with open(project_root / "gp_libs" / "__about__.py") as fp:
22+
with open(project_root / "src" / "gp_libs.py") as fp:
2323
exec(fp.read(), about)
2424

2525
extensions = [

docs/developing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ CI. See the configuration in `pyproject.toml` and `setup.cfg`:
5959
[poetry] handles virtualenv creation, package requirements, versioning,
6060
building, and publishing. Therefore there is no setup.py or requirements files.
6161

62-
Update `__version__` in `__about__.py` and `pyproject.toml`::
62+
Update `__version__` in `src/gp_libs.py` and `pyproject.toml`::
6363

6464
git commit -m 'build(gp_libs): Tag v0.1.1'
6565
git tag v0.1.1

gp_libs/__init__.py

Lines changed: 0 additions & 12 deletions
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)