Skip to content

Commit

Permalink
bump version; support python 3.10; remove 3.6 (#204)
Browse files Browse the repository at this point in the history
* bump version; support python 3.10; remove 3.6

* fix github CI issues
  • Loading branch information
pseudonym117 authored Apr 5, 2022
1 parent bc971bf commit d15cefb
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:

steps:
- uses: actions/checkout@master
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, '3.10']

steps:
- uses: actions/checkout@v2
Expand All @@ -36,10 +36,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
8 changes: 7 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Check for full (read: slightly better) documentation `here <http://riot-watcher.

RiotWatcher is a thin wrapper on top of the `Riot Games API for League
of Legends <https://developer.riotgames.com/>`__. All public methods as
of 10/14/2021 are supported in full.
of 4/4/20222 are supported in full.

RiotWatcher by default supports a naive rate limiter. This rate limiter will
try to stop you from making too many requests, and in a single threaded test
Expand Down Expand Up @@ -165,6 +165,12 @@ Rate limiter has some race conditions when used concurrently.

Changelog
---------
v3.2.1 - 4/4/2022
~~~~~~~~~~~~~~~~~
Added ddragon all versions method.

Add support for python 3.10, remove support for python 3.6

v3.2.0 - 10/14/2021
~~~~~~~~~~~~~~~~~~~
Removed match_v4 and match_v5 properties from LolWatcher. Use match property now - will use v5 API.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Welcome to RiotWatcher's documentation!

RiotWatcher is a thin wrapper on top of the `Riot Games API for League
of Legends <https://developer.riotgames.com/>`__. All public methods as
of 7/4/2021 are supported in full.
of 4/4/2022 are supported in full.

RiotWatcher by default supports a naive rate limiter. This rate limiter will
try to stop you from making too many requests, and in a single threaded test
Expand Down
2 changes: 1 addition & 1 deletion src/riotwatcher/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "3.2.0"
__version__ = "3.2.1"
__author__ = "pseudonym117"
__title__ = "RiotWatcher"
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = docs, py{36,py3,37,38,39}
envlist = docs, py{py3,37,38,39,310}

[testenv]
deps =
Expand Down

0 comments on commit d15cefb

Please sign in to comment.