Skip to content

Commit

Permalink
Merge pull request #660 from DocNow/require-py36
Browse files Browse the repository at this point in the history
bump python version to >=3.6
  • Loading branch information
igorbrigadir authored Oct 25, 2022
2 parents 2b321dc + 4c0d3e1 commit a29b45a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
classifiers=[
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.3",
python_requires=">=3.6",
install_requires=dependencies,
setup_requires=["pytest-runner"],
tests_require=[
Expand Down
4 changes: 2 additions & 2 deletions test_twarc2.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@ def test_search_recent(sort_order):
tweets = response_page["data"]
found_tweets += len(tweets)

if pages == 3:
if pages == 2:
break

assert 200 <= found_tweets <= 300
assert 100 <= found_tweets <= 200


def atest_counts_recent():
Expand Down

0 comments on commit a29b45a

Please sign in to comment.