Skip to content

Commit f0adefc

Browse files
committed
Factor out generic PostgreSQL protocol helpers into a separate package
1 parent 0304288 commit f0adefc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+557
-3558
lines changed

.ci/appveyor.yml

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ branches:
2727
- releases
2828

2929
install:
30+
- git submodule update --init --recursive
3031
- "%PYTHON% -m pip install --upgrade pip wheel setuptools"
3132

3233
build_script:

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "asyncpg/pgproto"]
2+
path = asyncpg/pgproto
3+
url = https://github.com/MagicStack/py-pgproto.git

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ all: compile
1010

1111
clean:
1212
rm -fr dist/ doc/_build/
13+
rm -fr asyncpg/pgproto/*.c asyncpg/pgproto/*.html
14+
rm -fr asyncpg/pgproto/pgproto/*.html
1315
rm -fr asyncpg/protocol/*.c asyncpg/protocol/*.html
1416
rm -fr asyncpg/protocol/*.so build *.egg-info
1517
rm -fr asyncpg/protocol/codecs/*.html

asyncpg/pgproto

Submodule pgproto added at 5c31700

asyncpg/protocol/buffer.pxd

-135
This file was deleted.

0 commit comments

Comments
 (0)