Skip to content

Commit 8fb36e9

Browse files
committed
1.0.0b1 Release
1 parent 539d090 commit 8fb36e9

File tree

5 files changed

+9
-130
lines changed

5 files changed

+9
-130
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ Ethereum Development Framework
1515

1616
## Features
1717

18-
- compilation (limited to solidity right now).
18+
- compilation
1919
- deployment
2020
- testing (using pytest)
2121
- management of test chains
22-
- html/css/js development server.

docs/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ Contents:
1212
populus.overview
1313
populus.testing
1414
populus.testing-fixtures
15-
populus.contracts
1615

1716
:maxdepth: 2
1817

docs/populus.contracts.rst

Lines changed: 0 additions & 119 deletions
This file was deleted.

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ watchdog>=0.8.3
55
toposort>=1.4
66
py-geth>=0.5.0
77
web3>=1.3.0
8-
gevent==1.1.1
9-
py-solc==0.2.0
10-
eth-testrpc==0.4.2
8+
gevent>=1.1.1
9+
py-solc>=0.2.0
10+
eth-testrpc>=0.4.2

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup(
1717
name='populus',
18-
version="0.8.0",
18+
version="1.0.0b1",
1919
description="""Ethereum Development Framework""",
2020
long_description=readme,
2121
author='Piper Merriam',
@@ -25,16 +25,16 @@
2525
py_modules=['populus'],
2626
install_requires=[
2727
"click>=5.1",
28+
"gevent>=1.1.1",
2829
"pytest>=2.7.2",
2930
"requests>=2.7.0",
3031
"watchdog>=0.8.3",
3132
"toposort>=1.4",
32-
"py-geth>=0.5.0",
3333
"web3>=1.3.0",
3434
"pysha3>=0.3",
35-
"gevent>=1.1.1",
36-
"py-solc==0.2.0",
37-
"eth-testrpc==0.4.2",
35+
"py-geth>=0.5.0",
36+
"py-solc>=0.2.0",
37+
"eth-testrpc>=0.4.2",
3838
],
3939
license="MIT",
4040
zip_safe=False,

0 commit comments

Comments
 (0)