Skip to content

Commit 611ff48

Browse files
authored
Merge pull request #1999 from kclowes/update-blake2b-py
Update blake2b-py version requirement
2 parents 7afe050 + 73c77aa commit 611ff48

File tree

5 files changed

+43
-4
lines changed

5 files changed

+43
-4
lines changed

.circleci/config.yml

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: 2.0
22

3-
# heavily inspired by:
3+
# heavily inspired by:
44
# https://raw.githubusercontent.com/pinax/pinax-wiki/6bd2a99ab6f702e300d708532a6d1d9aa638b9f8/.circleci/config.yml
55

66
common: &common
@@ -205,6 +205,37 @@ jobs:
205205
environment:
206206
TOXENV: py38-lint
207207

208+
py39-core:
209+
<<: *common
210+
docker:
211+
- image: circleci/python:3.9
212+
environment:
213+
TOXENV: py39-core
214+
py39-database:
215+
<<: *common
216+
docker:
217+
- image: circleci/python:3.9
218+
environment:
219+
TOXENV: py39-database
220+
py39-transactions:
221+
<<: *common
222+
docker:
223+
- image: circleci/python:3.9
224+
environment:
225+
TOXENV: py39-transactions
226+
py39-vm:
227+
<<: *common
228+
docker:
229+
- image: circleci/python:3.9
230+
environment:
231+
TOXENV: py39-vm
232+
py39-lint:
233+
<<: *common
234+
docker:
235+
- image: circleci/python:3.9
236+
environment:
237+
TOXENV: py39-lint
238+
208239
workflows:
209240
version: 2
210241
test:
@@ -223,16 +254,21 @@ workflows:
223254
- py36-vm
224255
- py37-vm
225256
- py38-vm
257+
- py39-vm
226258
- py36-core
227259
- py37-core
228260
- py38-core
261+
- py39-core
229262
- py36-transactions
230263
- py37-transactions
231264
- py38-transactions
265+
- py39-transactions
232266
- py36-database
233267
- py37-database
234268
- py38-database
269+
- py39-database
235270
- py36-docs
236271
- py36-lint
237272
- py37-lint
238273
- py38-lint
274+
- py39-lint

newsfragments/1999.feature.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add Python 3.9 support

newsfragments/1999.misc.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update blake2b-py requirement from >=0.1.2 to >=0.1.4

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
deps = {
77
'eth': [
8-
"blake2b-py>=0.1.2,<0.2",
8+
"blake2b-py>=0.1.4,<0.2",
99
"cached-property>=1.5.1,<2",
1010
"eth-bloom>=1.0.3,<2.0.0",
1111
"eth-keys>=0.2.1,<0.4.0",

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[tox]
22
envlist=
3-
py{36,37,38}-{core,database,transactions,vm}
3+
py{36,37,38,39}-{core,database,transactions,vm}
44
py36-benchmark
55
py36-native-blockchain-{frontier,homestead,tangerine_whistle,spurious_dragon,byzantium,constantinople,petersburg,istanbul,berlin,metropolis,transition}
6-
py{36,37,38}-lint
6+
py{36,37,38,39}-lint
77
py36-docs
88

99
[flake8]
@@ -48,6 +48,7 @@ basepython =
4848
py36: python3.6
4949
py37: python3.7
5050
py38: python3.8
51+
py39: python3.9
5152

5253

5354
[testenv:py36-docs]

0 commit comments

Comments
 (0)