File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 11# postgresql-wheel
22
3- A Python wheel for Linux containing a locally installable PostgreSQL
4- database server.
3+ A Python wheel for Linux containing a complete, self-contained,
4+ locally installable PostgreSQL database server.
55
66All servers run as the Python process user in a local path, so this
7- wheel does not require root or sudo privledges.
7+ wheel does not require root or sudo privledges. Databases can be
8+ initialized in any directory.
89
910Servers can be setup and torn down in test fixtures with no additional
1011outside dependencies.
1112
12- Currently this wheel only works for most flavors of Linux. MacOS and
13- maybe even Windows are doable... by someone else.
13+ Currently this wheel only works for most flavors of Linux.
1414
1515Postgres is compiled in the same "manylinux" environments provided by
1616the [ cibuildwheel] ( https://cibuildwheel.readthedocs.io/en/stable/ )
17- tool using [ Github Actions] ( ) and directly archived into the wheel's "package_data".
17+ tool using [ Github
18+ Actions] ( https://github.com/michelp/postgresql-wheel/blob/main/.github/workflows/wheels.yml )
19+ and directly archived into the wheel's "package_data".
1820
1921The wheel can be installed with pip:
2022
Original file line number Diff line number Diff line change @@ -22,5 +22,5 @@ def package_files(directory):
2222 package_data = {"postgresql" : package_files ("postgresql" )},
2323 setup_requires = ["cffi" ],
2424 cffi_modules = ["postgresql/build.py:ffibuilder" ],
25- python_requires = ">=3.8 ,<3.9 " ,
25+ python_requires = ">=3.7 ,<3.10 " ,
2626)
You can’t perform that action at this time.
0 commit comments