Skip to content

Commit 22c0877

Browse files
committed
readme and add 3.9
1 parent a86aef6 commit 22c0877

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

README.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
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

66
All 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

910
Servers can be setup and torn down in test fixtures with no additional
1011
outside 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

1515
Postgres is compiled in the same "manylinux" environments provided by
1616
the [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

1921
The wheel can be installed with pip:
2022

setup.py

+1-1
Original file line numberDiff line numberDiff 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
)

0 commit comments

Comments
 (0)