Skip to content

Commit

Permalink
Update package name.
Browse files Browse the repository at this point in the history
Indeed, as the 2.x.x branch of PyFunceble was merged into the dev branch, we can now install the latest PyFunceble-dev package from PyPi instead of git.

cc @mitchellkrogza @dnmTX

Ping: #32
  • Loading branch information
funilrys committed May 15, 2019
1 parent c5b93bb commit 8e98cd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ultimate_hosts_blacklist/input_repo_updater/__init__.py
Expand Up @@ -38,7 +38,7 @@
from colorama import init as initiate_coloration
from ultimate_hosts_blacklist.input_repo_updater.core import Core

VERSION = "1.10.0"
VERSION = "1.11.0"


def _command_line():
Expand Down
5 changes: 1 addition & 4 deletions ultimate_hosts_blacklist/input_repo_updater/configuration.py
Expand Up @@ -135,10 +135,7 @@ class PyFunceble: # pylint: disable=too-few-public-methods
}

# Set the PyFunceble packages to install.
packages = {
"stable": "PyFunceble",
"dev": "git+https://github.com/funilrys/PyFunceble.git@2.x.x",
}
packages = {"stable": "PyFunceble", "dev": "PyFunceble-dev"}


class Infrastructure: # pylint: disable=too-few-public-methods
Expand Down

3 comments on commit 8e98cd1

@mitchellkrogza
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So if we still have pip3 install PyFunceble-dev in .travis.yml ? Still good?

@mitchellkrogza
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@funilrys
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mitchellkrogza No changes yes 😉 You can just now use --multiprocess and --processes if you want to test multiple simultaneously!

Please sign in to comment.