From bca612a32d6e288e56e060651921734b09090087 Mon Sep 17 00:00:00 2001 From: Marco Aceti Date: Fri, 14 Jun 2019 17:51:36 +0200 Subject: [PATCH 1/6] Fix installation documentation --- docs/install.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/install.rst b/docs/install.rst index 5f3dd9b..1bb212e 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -12,7 +12,7 @@ really easily with the `pip`_ command-line utility. Before installing it, be sure to have Python_ 3.4 (or a newer version), pip_, virtualenv_ and setuptools_ installed on your system. Then, issue the following command:: - $ python3 -m pip install botogram + $ python3 -m pip install botogram2 Perfect, botogram is now installed! Now, you can follow the ":ref:`tutorial`" chapter if you want to create a bot right now! @@ -26,7 +26,7 @@ If you don't mind having some instability or bugs, and you want the latest features not yet released, you can clone the `botogram git repository`_, install `virtualenv`_, `invoke`_ and execute the installation from source:: - $ git clone https://github.com/pietroalbini/botogram.git + $ git clone https://github.com/python-botogram/botogram.git $ cd botogram $ invoke install @@ -77,7 +77,7 @@ something globally. In this case, you can ask your system administrator to execute the above command, or you can wrap the command with sudo, if you are allowed to do so:: - $ sudo pip3 install botogram + $ sudo pip3 install botogram2 If you installed from source, you need to use this command instead of the last one:: From ddbb3481e090cb088b40ace1ca40a3bc8253b5e1 Mon Sep 17 00:00:00 2001 From: Marco Aceti Date: Sat, 15 Jun 2019 14:50:19 +0200 Subject: [PATCH 2/6] Other documentation fixes --- docs/changelog/0.4.rst | 2 +- docs/install.rst | 2 +- tasks.py | 4 ++-- website/index.html | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/changelog/0.4.rst b/docs/changelog/0.4.rst index a8b84b6..c74a0eb 100644 --- a/docs/changelog/0.4.rst +++ b/docs/changelog/0.4.rst @@ -94,7 +94,7 @@ Bug fixes * Fix :py:attr:`botogram.Message.forward_from` giving wrong information with signed channel posts (`issue 80`_) -.. _issue 80: https://github.com/pietroalbini/botogram/issues/80 +.. _issue 80: https://github.com/python-botogram/botogram/issues/80 Deprecated features diff --git a/docs/install.rst b/docs/install.rst index 1bb212e..fa461b8 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -77,7 +77,7 @@ something globally. In this case, you can ask your system administrator to execute the above command, or you can wrap the command with sudo, if you are allowed to do so:: - $ sudo pip3 install botogram2 + $ sudo python3 -m pip install botogram2 If you installed from source, you need to use this command instead of the last one:: diff --git a/tasks.py b/tasks.py index 581bdec..0f46860 100644 --- a/tasks.py +++ b/tasks.py @@ -53,8 +53,8 @@ PROJECT = "botogram" VERSION = "1.0.dev0" -ISSUES = "https://github.com/pietroalbini/botogram/issues" -COPYRIGHT = "Pietro Albini " +ISSUES = "https://github.com/python-botogram/botogram/issues" +COPYRIGHT = "The Botogram Authors " def create_env(name, requirements=False, self=False, force=False): diff --git a/website/index.html b/website/index.html index 22cdc48..1051262 100644 --- a/website/index.html +++ b/website/index.html @@ -40,7 +40,7 @@

Python framework for Telegram bots