File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ COPY --chown=postgres:postgres . /app
1010WORKDIR /app/pgml
1111
1212# Install pgml extension globally.
13- RUN python3 setup.py install
13+ RUN pip3 install pgml
1414
1515# Listen on 0.0.0.0 and allow 'root' to connect without a password.
1616# Please modify for production deployments accordingly.
Original file line number Diff line number Diff line change 11def version ():
2- return "0.1 "
2+ return "0.3 "
Original file line number Diff line number Diff line change 11import setuptools
2+ from pgml import version
23
34with open ("README.md" , "r" ) as fh :
45 long_description = fh .read ()
56
67setuptools .setup (
78 name = "pgml" ,
8- version = "0.1" ,
9+ version = version () ,
910 author = "PostgresML" ,
1011 author_email = "hello@postgresml.com" ,
1112 description = "Run machine learning inside Postgres." ,
1213 long_description = long_description ,
1314 long_description_content_type = "text/markdown" ,
14- url = "https://github.com/levkk /postgresml" ,
15+ url = "https://github.com/postgresml /postgresml" ,
1516 install_requires = [
1617 "sklearn" ,
1718 ],
You can’t perform that action at this time.
0 commit comments