Skip to content

Commit 1cbf0f8

Browse files
committed
rename to tracing-py3
1 parent 63a782b commit 1cbf0f8

File tree

3 files changed

+38
-38
lines changed

3 files changed

+38
-38
lines changed

.github/workflows/main.yml

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -123,41 +123,41 @@ jobs:
123123
- name: Upload package
124124
uses: actions/upload-artifact@v3
125125
with:
126-
name: py_tracing-latest-py3
126+
name: tracing_py3-latest-py3
127127
path: dist/*
128128

129-
update-documentation:
130-
name: Update documentation
131-
needs: build
132-
runs-on: ubuntu-latest
133-
134-
steps:
135-
- uses: actions/checkout@v4
136-
137-
- name: Set up Python 3.11
138-
uses: actions/setup-python@v5
139-
with:
140-
python-version: 3.11
141-
142-
- name: Install dependecies
143-
run: |
144-
python -m pip install --upgrade pip
145-
pip install make poetry
146-
poetry config virtualenvs.create false --local
147-
poetry config virtualenvs.in-project false --local
148-
poetry install
149-
150-
- name: Build documentation
151-
run: |
152-
cd docs && make html
153-
154-
- name: Deploy to GitHub Pages
155-
uses: peaceiris/actions-gh-pages@v3
156-
with:
157-
publish_branch: gh-pages
158-
github_token: ${{ secrets.TOKEN }}
159-
publish_dir: docs/build/html
160-
force_orphan: true
129+
# update-documentation:
130+
# name: Update documentation
131+
# needs: build
132+
# runs-on: ubuntu-latest
133+
134+
# steps:
135+
# - uses: actions/checkout@v4
136+
137+
# - name: Set up Python 3.11
138+
# uses: actions/setup-python@v5
139+
# with:
140+
# python-version: 3.11
141+
142+
# - name: Install dependecies
143+
# run: |
144+
# python -m pip install --upgrade pip
145+
# pip install make poetry
146+
# poetry config virtualenvs.create false --local
147+
# poetry config virtualenvs.in-project false --local
148+
# poetry install
149+
150+
# - name: Build documentation
151+
# run: |
152+
# cd docs && make html
153+
154+
# - name: Deploy to GitHub Pages
155+
# uses: peaceiris/actions-gh-pages@v3
156+
# with:
157+
# publish_branch: gh-pages
158+
# github_token: ${{ secrets.TOKEN }}
159+
# publish_dir: docs/build/html
160+
# force_orphan: true
161161

162162
publish-to-pypi:
163163
name: Publish to PyPI
@@ -172,7 +172,7 @@ jobs:
172172
- name: Download all the dists
173173
uses: actions/download-artifact@v3
174174
with:
175-
name: py_tracing-latest-py3
175+
name: tracing_py3-latest-py3
176176
path: dist
177177

178178
- name: Publish distribution to PyPI

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@
1717
Install using `pip`:
1818

1919
```
20-
pip install py-tracing
20+
pip install tracing-py3
2121
```
2222

2323
Install using `poetry` CLI:
2424

2525
```
26-
poetry add py-tracing
26+
poetry add tracing-py3
2727
```
2828

2929
or using `pyproject.toml`:
3030

3131
```toml
3232
[tool.poetry.dependencies]
33-
py-tracing = "^0.1.0"
33+
tracing-py3 = "^0.1.0"
3434
```
3535

3636

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.poetry]
2-
name = "py-tracing"
2+
name = "tracing-py3"
33
version = "0.1.0"
44
description = "Superset of python internal logging module"
55
authors = ["Hendrik Boeck <hendrikboeck.dev@protonmail.com>"]

0 commit comments

Comments
 (0)