Skip to content

Commit cc93c7d

Browse files
authored
Merge pull request #26 from python-ellar/proj_info_update
Project PyPI info updates
2 parents a818211 + c3e3f81 commit cc93c7d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/test_full.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ['3.8', '3.9', '3.10', '3.11']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
1414

1515
steps:
1616
- uses: actions/checkout@v4

ellar_throttler/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""A rate limiting module for Ellar"""
22

3-
__version__ = "0.0.9"
3+
__version__ = "0.1.0"
44

55
from .decorators import skip_throttle, throttle
66
from .exception import ThrottledException

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ authors = [
1414
dynamic = ["version", "description"]
1515
requires-python = ">=3.8"
1616
readme = "README.md"
17-
home-page = "https://github.com/eadwinCode/ellar-throttler"
17+
home-page = "https://github.com/python-ellar/ellar-throttler"
1818
classifiers = [
1919
"Intended Audience :: Information Technology",
2020
"Intended Audience :: System Administrators",
@@ -45,9 +45,9 @@ dependencies = [
4545

4646

4747
[project.urls]
48-
Documentation = "https://github.com/eadwinCode/ellar-throttler"
49-
Source = "https://github.com/eadwinCode/ellar-throttler"
50-
Homepage = "https://eadwincode.github.io/ellar-throttler/"
48+
Documentation = "https://github.com/python-ellar/ellar-throttler"
49+
Source = "https://github.com/python-ellar/ellar-throttler"
50+
Homepage = "https://python-ellar.github.io/ellar-throttler/"
5151

5252
[project.optional-dependencies]
5353
test = [

0 commit comments

Comments
 (0)