Compare commits
No commits in common. "master" and "v1.1.5" have entirely different histories.
5 changed files with 31 additions and 18 deletions
14
.gitignore
vendored
14
.gitignore
vendored
|
|
@ -1,4 +1,12 @@
|
|||
# python stuff
|
||||
__pycache__/
|
||||
*.egg-info/
|
||||
/.mypy_cache/
|
||||
/.venv/
|
||||
|
||||
# venv stuff
|
||||
bin/
|
||||
include/
|
||||
lib/
|
||||
lib64
|
||||
pyvenv.cfg
|
||||
|
||||
# mypy stuff
|
||||
.mypy_cache/
|
||||
|
|
|
|||
|
|
@ -2,11 +2,6 @@
|
|||
|
||||
## Next version
|
||||
|
||||
## 1.2.0 (2022-08-21)
|
||||
|
||||
- update websockets dependency
|
||||
- switch to pyproject.toml style setuptools config
|
||||
|
||||
## 1.1.5 (2020-01-26)
|
||||
|
||||
- more stability (I think)
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ Ensure that you have at least Python 3.7 installed.
|
|||
|
||||
To install yaboli or update your installation to the latest version, run:
|
||||
```
|
||||
$ pip install git+https://github.com/Garmelon/yaboli@v1.2.0
|
||||
$ pip install git+https://github.com/Garmelon/yaboli@v1.1.5
|
||||
```
|
||||
|
||||
The use of [venv](https://docs.python.org/3/library/venv.html) is recommended.
|
||||
|
|
|
|||
12
examples/echo/.gitignore
vendored
12
examples/echo/.gitignore
vendored
|
|
@ -1,3 +1,15 @@
|
|||
# python stuff
|
||||
__pycache__/
|
||||
|
||||
# venv stuff
|
||||
bin/
|
||||
include/
|
||||
lib/
|
||||
lib64
|
||||
pyvenv.cfg
|
||||
|
||||
# bot stuff
|
||||
#
|
||||
# These files are ignored because they may contain sensitive information you
|
||||
# wouldn't want in your repo. If you need to have a config file in your repo,
|
||||
# store a bot.conf.default with default settings.
|
||||
|
|
|
|||
|
|
@ -1,13 +1,11 @@
|
|||
[build-system]
|
||||
requires = ["setuptools"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
from setuptools import setup
|
||||
|
||||
[project]
|
||||
name = "yaboli"
|
||||
version = "1.2.0"
|
||||
dependencies = [
|
||||
"websockets >=10.3, <11"
|
||||
]
|
||||
setup(
|
||||
name="yaboli",
|
||||
version="1.1.5",
|
||||
packages=["yaboli"],
|
||||
install_requires=["websockets==7.0"],
|
||||
)
|
||||
|
||||
# When updating the version, also:
|
||||
# - update the README.md installation instructions
|
||||
Loading…
Add table
Add a link
Reference in a new issue