Skip to content

Commit

Permalink
Declare Python 3.10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
parafoxia committed Jul 25, 2021
1 parent b7cc41f commit 744b574
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ A simple yet powerful API wrapper to make getting analytical information from yo

## Installation

**You need Python 3.6.0 or greater to run analytix.** It is recommended you install analytix in a virtual environment.
**You need Python 3.6.0 or greater to run analytix.** It is recommended you install analytix in a virtual environment. **Note**: While analytix supports Python 3.10, pandas does not. You will be able to retrieve reports and save them locally, but you won't be able to convert them to DataFrame objects.

To install the latest stable version of analytix, use the following command:
```sh
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def parse_requirements(path):
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
# "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.10",
"Topic :: Utilities",
],
project_urls={
Expand Down
4 changes: 0 additions & 4 deletions tests/test_youtube_analytics.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ def test_reports_max_results(client):


def test_reports_sort_ascending(client):
import numpy as np

report = client.retrieve(
dt.date(2021, 1, 1),
dt.date(2021, 2, 28),
Expand All @@ -60,8 +58,6 @@ def test_reports_sort_ascending(client):


def test_reports_sort_descending(client):
import numpy as np

report = client.retrieve(
dt.date(2021, 1, 1),
dt.date(2021, 2, 28),
Expand Down

0 comments on commit 744b574

Please sign in to comment.