Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Or if you want to install directly from the repository:

.. code-block:: console

$ python setup.py install
$ pip install --editable .

Usage
=====
Expand Down
33 changes: 31 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,35 @@
[tool.ruff]
target-version = "py310"
[project]
name = "pysolr"
version = "3.11.0"
description = "Lightweight Python client for Apache Solr"
readme = "README.rst"
license = { text = "BSD" }
authors = [ { name = "Daniel Lindsley", email = "daniel@toastdriven.com" } ]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
]

dependencies = [ "requests>=2.32.5", "setuptools" ]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have learned not to trust the GitHub merge editor as it discarded most of my edit consolidating this block into the tool.ruff section below.

Copy link
Contributor Author

@cclauss cclauss Nov 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't use GitHub Merge either. I just did not rebase against a current master. -- Fixed.

optional-dependencies.solrcloud = [ "kazoo>=2.5" ]
urls.Homepage = "https://github.com/django-haystack/pysolr/"

[tool.setuptools]
py-modules = [ "pysolr" ]
include-package-data = false

[tool.ruff]
lint.select = [
"A", # flake8-builtins
"AIR", # Airflow
Expand Down
30 changes: 0 additions & 30 deletions setup.py

This file was deleted.

2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ sonar.projectKey=django-haystack_pysolr
sonar.organization=django-haystack
sonar.host.url=https://sonarcloud.io
sonar.python.coverage.reportPaths=coverage.xml
sonar.coverage.exclusions=setup.py,solr/**
sonar.coverage.exclusions=solr/**