Skip to content

Commit

Permalink
Update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
hwwhww committed Apr 24, 2019
1 parent ba99f8a commit 5437273
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@ eth2.0-spec-tests/

# Dynamically built from Markdown spec
test_libs/pyspec/eth2spec/phase0/spec.py

# vscode
.vscode/**
4 changes: 2 additions & 2 deletions test_libs/config_helpers/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from distutils.core import setup
from setuptools import setup, find_packages


deps = {
Expand All @@ -15,6 +15,6 @@

setup(
name='config_helpers',
packages=['preset_loader'],
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=install_requires,
)
4 changes: 2 additions & 2 deletions test_libs/gen_helpers/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from distutils.core import setup
from setuptools import setup, find_packages


deps = {
Expand All @@ -16,6 +16,6 @@

setup(
name='gen_helpers',
packages=['gen_base'],
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=install_requires,
)
4 changes: 1 addition & 3 deletions test_libs/pyspec/setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
from setuptools import setup, find_packages




deps = {
'pyspec': [
"eth-utils>=1.3.0,<2",
Expand All @@ -24,7 +22,7 @@

setup(
name='pyspec',
packages=find_packages(),
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=install_requires,
extras_require=deps,
)

0 comments on commit 5437273

Please sign in to comment.