Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2.1
parameters:
default-python-image:
type: string
default: "cimg/python:3.8"
default: "cimg/python:3.9"

executors:
docker-amd64-image:
Expand Down Expand Up @@ -193,7 +193,7 @@ workflows:
matrix:
parameters:
exe: [ docker-amd64-image, docker-arm64-image ]
python-image: [ << pipeline.parameters.default-python-image >>, "cimg/python:3.9", "cimg/python:3.10", "cimg/python:3.11", "cimg/python:3.12", "cimg/python:3.13" ]
python-image: [ << pipeline.parameters.default-python-image >>, "cimg/python:3.10", "cimg/python:3.11", "cimg/python:3.12", "cimg/python:3.13", "cimg/python:3.14" ]
- tests-python:
requires:
- tests-python
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pip install influxdb3-python

Note: This does not include Pandas support. If you would like to use key features such as `to_pandas()` and `write_file()` you will need to install `pandas` separately.

*Note: Please make sure you are using 3.6 or above. For the best performance use 3.11+*
*Note: Please make sure you are using 3.9 or above. For the best performance use 3.11+*

# Usage
One of the easiest ways to get started is to checkout the ["Pokemon Trainer Cookbook"](https://github.com/InfluxCommunity/influxdb3-python/blob/main/Examples/pokemon-trainer/cookbook.ipynb). This scenario takes you through the basics of both the client library and Pyarrow.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,16 @@ def get_version():
]
},
install_requires=requires,
python_requires='>=3.8',
python_requires='>=3.9',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'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',
]
)
2 changes: 0 additions & 2 deletions tests/test_api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ def mock_urllib3_timeout_request(method,
return response.HTTPResponse(status=200, version=4, reason="OK", decode_content=False, request_url=url)

def test_default_headers(self):
global _package
conf = Configuration()
client = ApiClient(conf,
header_name="Authorization",
Expand All @@ -69,7 +68,6 @@ def test_default_headers(self):
@mock.patch("influxdb_client_3.write_client._sync.rest.RESTClientObject.request",
side_effect=mock_rest_request)
def test_call_api(self, mock_post):
global _package
global _sentHeaders
_sentHeaders = {}

Expand Down
1 change: 0 additions & 1 deletion tests/util/mocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ def set_req_headers(headers):


def get_req_headers():
global req_headers
return req_headers


Expand Down