Skip to content

Commit 70d6549

Browse files
committed
fix install cli to hanzo-dev
1 parent 8fc7bfa commit 70d6549

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

.github/workflows/pages.yml

-4
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,12 @@ jobs:
6262

6363
# Deployment job
6464
deploy:
65-
environment:
66-
name: github-pages
67-
url: ${{ steps.deployment.outputs.page_url }}
6865
runs-on: ubuntu-latest
6966
needs: build
7067
steps:
7168
- name: Deploy to GitHub Pages
7269
id: deployment
7370
uses: actions/deploy-pages@v4
74-
7571
- name: Set up Python 3.12
7672
uses: actions/setup-python@v5
7773
with:

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
hanzo_developer.code-workspace
44
*.pyc
55
.hanzo_developer*
6-
dev_install.egg-info/
6+
hanzo_dev.egg-info/
77
build
88
dist/
99
Gemfile.lock

dev/website/_includes/get-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
If you already have python 3.8-3.13 installed, you can get started quickly like this:
33

44
```bash
5-
python -m pip install dev-install
6-
dev-install
5+
python -m pip install hanzo-dev
6+
dev
77

88
# Change directory into your code base
99
cd /to/your/project

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "dev-install"
2+
name = "hanzo-dev"
33
description = "Dev is AI pair programming in your terminal"
44
readme = "README.md"
55
classifiers = [
@@ -16,7 +16,7 @@ classifiers = [
1616
"Topic :: Software Development",
1717
]
1818
requires-python = ">=3.9,<3.13"
19-
version = "0.0.2"
19+
version = "0.0.1"
2020
dynamic = ["dependencies", "optional-dependencies"]
2121

2222
[project.urls]

0 commit comments

Comments
 (0)