Skip to content

Commit

Permalink
fixed dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ckarrie committed Feb 26, 2023
1 parent 5f35fa9 commit 6911501
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions build.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ cd ~/workspace/src/oekofen-api
```

### Push git changes
- Neue Version in der setup.py eintragen 0.0.21
- Neue Version in der setup.py eintragen 0.0.22
- Mit git changes pushen!!

### github Release erstellen
- https://github.com/ckarrie/oekofen-api/releases/new
- Tag (create new): v0.0.21
- Title: v0.0.21
- Tag (create new): v0.0.22
- Title: v0.0.22
- Button "Publish Release"

### Anpassen in setup.py
```
nano setup.py
```
```python
VERSION = "0.0.21"
VERSION = "0.0.22"

```

Expand All @@ -60,7 +60,7 @@ twine upload dist/*
Lokal updaten

```
pip install oekofen-api==0.0.21
pip install oekofen-api==0.0.22
```

## Update homeassistant-oekofen
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
voluptuous>=0.13.1
yarl~=1.8.2
yarl>=1.8.1
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
with open("README.md", "r") as f:
long_description = f.read()

VERSION = "0.0.21"
VERSION = "0.0.22"

setup(
name="oekofen_api",
Expand All @@ -18,7 +18,7 @@
packages=find_packages(),
install_requires=[
'voluptuous>=0.13.1',
'yarl~=1.8.2'
'yarl>=1.8.1'
],
classifiers=[
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit 6911501

Please sign in to comment.