Skip to content

Commit

Permalink
chore: Pinning dependencies versions in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
aadel committed Jun 5, 2024
1 parent f3b9646 commit deb4130
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ pre-commit = "*"
pysolr = "~=3.9.0"
requests = "~=2.31.0"
numpy = "~=1.22"
pandas = "~=1.2.2"
sqlparse = "~=0.4.1"
pandas = "<2.1, >=2.0.3"
sqlparse = "~=0.4.4"

[dev-packages]
nose = "*"
Expand Down
10 changes: 9 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,15 @@ keywords = ["Apache Solr", "Solr", "SQLAlchemy", "dialect", "Apache Superset"]
readme = "README.md"
license = {text = "MIT License"}
requires-python = ">=3.8"
dependencies = ["requests", "numpy", "pandas", "sqlalchemy", "sqlparse"]
dependencies = [
"sqlalchemy~=1.4.7",
"python-dateutil~=2.8.1",
"pysolr~=3.9.0",
"requests~=2.31.0",
"numpy~=1.22",
"pandas<2.1, >=2.0.3",
"sqlparse~=0.4.4"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
Expand Down
2 changes: 1 addition & 1 deletion src/sqlalchemy_solr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.

__version__ = "0.2.4.0.dev30"
__version__ = "0.2.4.1"
from sqlalchemy.dialects import registry

registry.register("solr", "sqlalchemy_solr.http", "SolrDialect_http")
Expand Down

0 comments on commit deb4130

Please sign in to comment.