Skip to content

Commit

Permalink
added SQLAlchemy>=1.3 as a fixed dependency (it was, anyway)
Browse files Browse the repository at this point in the history
  • Loading branch information
volfpeter committed Feb 19, 2020
1 parent 11d4075 commit 90a5dc8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 0 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ in the library, that show you how you can implement and use an actual graph scra
Dependencies
-----------------

The project requires SQLAlchemy_ or Flask-SQLAlchemy_ to be installed.

If you wish to use one of the included graph implementations, then please read the
corresponding module's description for additional requirements.

Expand All @@ -47,8 +45,6 @@ Contribution
Any form of constructive contribution (feedback, features, bug fixes, tests, additional
documentation, etc.) is welcome.

.. _Flask-SQLAlchemy: http://flask-sqlalchemy.pocoo.org/
.. _igraph: http://igraph.org
.. _Spotify: https://developer.spotify.com/web-api/
.. _SQLAlchemy: https://www.sqlalchemy.org/
.. |Downloads| image:: https://pepy.tech/badge/graphscraper
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name="graphscraper",
version="0.4.0",
version="0.5.0",
description="Graph implementation that loads graph data (nodes and edges) from external sources "
"and caches the loaded data in a database using sqlalchemy or flask-sqlalchemy.",
long_description=long_description,
Expand All @@ -33,5 +33,6 @@
keywords="graph network webscraping sqlalchemy database db caching",
package_dir={"": "src"},
packages=find_packages("src"),
python_requires=">=3"
python_requires=">=3",
install_requires=["sqlalchemy>=1.3"]
)

0 comments on commit 90a5dc8

Please sign in to comment.