Skip to content

Commit 8929523

Browse files
authored
Merge pull request #184 from MerleLiuKun/up-dep
feat(dependencies): ⬆️ update dependencies
2 parents 88ea232 + da51ea3 commit 8929523

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

.github/workflows/test.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,11 @@ jobs:
3636
poetry run pytest
3737
- name: Upload coverage to Codecov
3838
if: ${{ matrix.update-coverage }}
39-
uses: codecov/codecov-action@v1
39+
uses: codecov/codecov-action@v4
4040
with:
4141
file: ./coverage.xml
4242
fail_ci_if_error: true
43+
token: ${{ secrets.CODECOV_TOKEN }}
4344

4445
lint:
4546
name: black

pyproject.toml

+12-12
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ readme = "README.rst"
99
homepage = "https://github.com/sns-sdks/python-youtube"
1010
repository = "https://github.com/sns-sdks/python-youtube"
1111
classifiers = [
12+
"Intended Audience :: Developers",
1213
"License :: OSI Approved :: Apache Software License",
14+
"Topic :: Software Development :: Libraries :: Python Modules",
1315
"Programming Language :: Python",
1416
"Programming Language :: Python :: 3.6",
1517
"Programming Language :: Python :: 3.7",
@@ -20,8 +22,6 @@ classifiers = [
2022
"Programming Language :: Python :: 3.12",
2123
"Programming Language :: Python :: Implementation :: CPython",
2224
"Programming Language :: Python :: Implementation :: PyPy",
23-
"Topic :: Software Development :: Libraries :: Python Modules",
24-
"Intended Audience :: Developers",
2525
]
2626

2727
packages = [
@@ -32,25 +32,25 @@ packages = [
3232
[tool.poetry.dependencies]
3333
python = "^3.6"
3434
requests = "^2.24.0"
35-
requests-oauthlib = "^1.3.0"
36-
isodate = "^0.7.2"
35+
requests-oauthlib = "=1.3.0,<3.0.0"
36+
isodate = ">=0.6.0,<=0.7.2"
3737
dataclasses-json = [
38-
{version = "^0.5.3", python = "<3.7"},
39-
{version = "^0.6.0", python = ">=3.7"}
38+
{ version = "^0.5.3", python = "<3.7" },
39+
{ version = "^0.6.0", python = ">=3.7" }
4040
]
4141

4242
[tool.poetry.dev-dependencies]
4343
responses = [
44-
{version = "^0.17.0", python = "<3.7"},
45-
{version = "^0.23.0", python = ">=3.7"}
44+
{ version = "^0.17.0", python = "<3.7" },
45+
{ version = "^0.23.0", python = ">=3.7" }
4646
]
4747
pytest = [
48-
{version = "^6.2", python = "<3.7"},
49-
{version = "^7.1", python = ">=3.7"}
48+
{ version = "^6.2", python = "<3.7" },
49+
{ version = "^7.1", python = ">=3.7" }
5050
]
5151
pytest-cov = [
52-
{version = "^2.10.1", python = "<3.7"},
53-
{version = "^3.0.0", python = ">=3.7"}
52+
{ version = "^2.10.1", python = "<3.7" },
53+
{ version = "^3.0.0", python = ">=3.7" }
5454
]
5555

5656
[build-system]

0 commit comments

Comments
 (0)