mirror of https://github.com/nucypher/nucypher.git
Remove circleci CLI instalation from post-install; Correct __about__ module docstring location.
parent
40ed76e9da
commit
2dd22cb9a7
|
@ -15,12 +15,12 @@ You should have received a copy of the GNU Affero General Public License
|
|||
along with nucypher. If not, see <https://www.gnu.org/licenses/>.
|
||||
"""
|
||||
|
||||
from __future__ import absolute_import, division, print_function
|
||||
|
||||
"""
|
||||
WARNING: Do not modify this file.
|
||||
"""
|
||||
|
||||
from __future__ import absolute_import, division, print_function
|
||||
|
||||
__all__ = [
|
||||
"__title__", "__summary__", "__version__", "__author__", "__email__", "__license__", "__copyright__", "__url__"
|
||||
]
|
||||
|
|
6
setup.py
6
setup.py
|
@ -86,13 +86,9 @@ class PostDevelopCommand(develop):
|
|||
`pip install -e . -r dev-requirements.txt`.
|
||||
"""
|
||||
def run(self):
|
||||
|
||||
# super
|
||||
"""development setup scripts (pre-requirements)"""
|
||||
develop.run(self)
|
||||
|
||||
# development setup scripts (pre-requirements)
|
||||
subprocess.call(f"scripts/installation/install_solc.py")
|
||||
subprocess.call(".circleci/install_circle_cli.sh")
|
||||
|
||||
#
|
||||
# Requirements
|
||||
|
|
Loading…
Reference in New Issue