Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
jobs:
test-without-integration:
runs-on: ubuntu-latest
container: quarkchaindocker/pyquarkchain:mainnet1.1.1
container: quarkchaindocker/pyquarkchain:test-py3.13

steps:
- uses: actions/checkout@v4
Expand All @@ -22,7 +22,7 @@ jobs:

evm-tests-runner-1:
runs-on: ubuntu-latest
container: quarkchaindocker/pyquarkchain:mainnet1.1.1
container: quarkchaindocker/pyquarkchain:test-py3.13

steps:
- uses: actions/checkout@v4
Expand All @@ -35,7 +35,7 @@ jobs:

evm-tests-runner-2:
runs-on: ubuntu-latest
container: quarkchaindocker/pyquarkchain:mainnet1.1.1
container: quarkchaindocker/pyquarkchain:test-py3.13

steps:
- uses: actions/checkout@v4
Expand All @@ -48,7 +48,7 @@ jobs:

test-integration-and-qkc-specific-state:
runs-on: ubuntu-latest
container: quarkchaindocker/pyquarkchain:mainnet1.1.1
container: quarkchaindocker/pyquarkchain:test-py3.13

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-check-db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
jobs:
download-snapshot-and-checkdb:
runs-on: self-hosted
container: quarkchaindocker/pyquarkchain:mainnet1.6.1
container: quarkchaindocker/pyquarkchain:test-py3.13
timeout-minutes: 4320

steps:
Expand Down
17 changes: 15 additions & 2 deletions mainnet/singularity/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
FROM python:3.7-buster
FROM python:3.13-slim
LABEL maintainer="quarkchain"
RUN sed -i 's/deb.debian.org/archive.debian.org/' /etc/apt/sources.list
# install rocksdb
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
build-essential \
gcc \
g++ \
make \
git \
libbz2-dev \
libgflags-dev \
liblz4-dev \
librocksdb-dev \
libsnappy-dev \
libzstd-dev \
zlib1g-dev \
vim \
&& rm -rf /var/lib/apt/lists/*
# set up code
Expand All @@ -17,6 +29,7 @@ RUN git checkout $GIT_TAG

# py dep
RUN pip install -r requirements.txt
RUN python setup.py build_ext --inplace

# add qkchash c++ lib
ADD https://s3-us-west-2.amazonaws.com/pyqkcmainnet/libqkchash.so /code/pyquarkchain/qkchash/
Expand Down
57 changes: 27 additions & 30 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,34 +1,31 @@
aiohttp==3.1.3
aioprocessing==1.0.1
async_armor==0.0.2
coincurve==7.1.0
decorator==4.2.1
ecdsa==0.13.3
jsonrpcclient==2.5.2
jsonrpcserver==3.5.4
jsonrpc-async==0.6
numpy==1.15.1
psutil==5.6.6
rocksdict==0.3.29
requests==2.20.0
aiohttp_cors==0.7.0
eth-utils==1.2.0
eth-keys==0.2.0b3
eth-bloom==1.0.0
pyethash>=0.1.27,<1.0.0
py_ecc==1.4.3
eth-hash[pycryptodome]==0.1.4
pytest-timeout==1.3.3
cachetools==3.1.1
websockets==8.0.2
aiohttp>=3.9
aiohttp_cors>=0.7.0
aioprocessing>=2.0
cachetools>=5
coincurve>=19.0.1
decorator>=5
ecdsa>=0.18
eth-hash[pycryptodome]>=0.5,<0.6
eth-utils>=2.3
eth-keys>=0.5
eth-bloom>=2.0
httpx>=0.28
Cython>=3
setuptools>=80.8.0
numpy>=1.26
psutil>=6
rocksdict>=0.3.24
requests>=2.28.0
py_ecc>=7
pytest-timeout>=2.0.1
websockets>=12

# p2p
pytest>=3.6,<3.7
pytest-asyncio==0.9.0
cryptography==2.3.1
upnpclient==0.0.8
netifaces==0.10.7
rlp>=1.0.0,<2.0.0
async-upnp-client>=0.38
pytest>=8
pytest-asyncio>=0.23
cryptography>=42
rlp>=3

# pyethapp/accounts.py dependency
pbkdf2
pbkdf2>=1.3
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ def read(fname):
long_description=read("README.md"),
classifiers=["Development Status :: 0 - Development", "License :: MIT License"],
install_requires=install_requires,
python_requires=">=3.5",
python_requires=">=3.13",
cmdclass={"develop": custom_develop},
)
Loading