Skip to content

Commit cbf9f48

Browse files
Merge pull request #399 from PyAr/release-9
Release 9
2 parents 763aaf8 + c1ed0cd commit cbf9f48

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -565,8 +565,7 @@ Simplest way
565565
In some systems you can install ``fades`` directly, no needing to
566566
install previously any dependency.
567567

568-
If you are in debian unstable or testing, just do (but probably you will not
569-
get the latest version, see below for alternative installation methods):
568+
If you are in debian unstable or testing, just do:
570569

571570
sudo apt-get install fades
572571

@@ -617,16 +616,17 @@ And on Arch Linux with::
617616

618617
pacman -S python-xdg
619618

620-
Fades also needs the `virtualenv <https://virtualenv.pypa.io/en/latest/>` package to
621-
support different Python versions for child execution. (see `--python` argument.)
619+
Fades also needs the `virtualenv <https://virtualenv.pypa.io/en/latest/>`
620+
package to support different Python versions for child execution. (see the
621+
``--python`` option.)
622622

623623

624624
For others debian and ubuntu
625625
----------------------------
626626

627627
If you are NOT in debian unstable or testing (if you are, see
628628
above for better instructions), you can use this
629-
`.deb <http://ftp.debian.org/debian/pool/main/f/fades/fades_8.1-1_all.deb>`_.
629+
`.deb <http://ftp.debian.org/debian/pool/main/f/fades/fades_9.0-1_all.deb>`_.
630630

631631
Download it and install doing::
632632

@@ -646,7 +646,7 @@ Multiplatform tarball
646646
Finally you can always get the multiplatform tarball and install
647647
it in the old fashion way::
648648

649-
wget http://ftp.debian.org/debian/pool/main/f/fades/fades_8.1.orig.tar.gz
649+
wget http://ftp.debian.org/debian/pool/main/f/fades/fades_9.0.orig.tar.gz
650650
tar -xf fades_*.tar.gz
651651
cd fades-*
652652
sudo ./setup.py install

fades/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Holder of the fades version number."""
22

3-
VERSION = (8, 1)
3+
VERSION = (9, 0)
44
__version__ = '.'.join([str(x) for x in VERSION])

pkg/debian/copyright

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Upstream-Contact: Facundo Batista <[email protected]>
44
Source: https://github.com/PyAr/fades/
55

66
Files: *
7-
Copyright: (C) 2014-2018
7+
Copyright: (C) 2014-2020
88
Facundo Batista <[email protected]>
99
Nicolás Demarchi <[email protected]>
1010
License: GPL-3

pkg/snap/snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: fades
2-
version: "8.1"
2+
version: "9.0"
33
summary: system for automatically handling virtual environments
44
description: |
55
fades is a system that automatically handles the virtualenvs in the cases

0 commit comments

Comments
 (0)