Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
python-version: ["3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
python-version: ["3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions openapi/templates/pyproject.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ pydantic = ">=2"
typing-extensions = ">=4.7.1"

[tool.poetry.dev-dependencies]
pytest = ">=7.2.1"
tox = ">=3.9.0"
flake8 = ">=4.0.0"
pytest = ">=8.4.2"
tox = ">=4.30.3"
flake8 = ">=7.3.0"
types-python-dateutil = ">=2.8.19.14"
mypy = "1.4.1"

Expand Down
30 changes: 15 additions & 15 deletions openapi/templates/requirements.mustache
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
aenum==3.1.11
aiohttp==3.12.14
aenum==3.1.16
aiohttp==3.13.4
blinker==1.9.0
jwcrypto==1.5.6
pycryptodomex==3.23.0
pydantic==2.11.3
pydash==8.0.5
PyJWT==2.10.1
pydash==8.0.6
PyJWT==2.12.0
python-dateutil==2.9.0.post0
PyYAML==6.0.2
requests==2.32.3
xmltodict==0.14.2
PyYAML==6.0.3
requests==2.33.0
xmltodict==1.0.2

# Development & Testing Tools
flake8==7.1.2
pyfakefs==5.8.0
pytest==8.3.5
pytest-asyncio==0.26.0
pytest-mock==3.14.0
pytest-recording==0.13.2
tox==4.24.2
twine==6.1.0
flake8==7.3.0
pyfakefs==5.10.2
pytest==8.4.2
pytest-asyncio==1.2.0
pytest-mock==3.15.1
pytest-recording==0.13.4
tox==4.30.3
twine==6.2.0
14 changes: 7 additions & 7 deletions openapi/templates/setup.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@ from setuptools import setup, find_packages # noqa: H301
NAME = "okta"
PYTHON_REQUIRES = ">=3.10"
REQUIRES = [
"aenum >= 3.1.11",
"aiohttp >= 3.12.14",
"aenum >= 3.1.16",
"aiohttp >= 3.13.4",
"blinker >= 1.9.0",
'jwcrypto >= 1.5.6',
"pycryptodomex >= 3.23.0",
"pydantic >= 2.11.3",
"pydash >= 8.0.5",
"PyJWT >= 2.10.1",
"pydash >= 8.0.6",
"PyJWT >= 2.12.0",
"python-dateutil >= 2.9.0.post0",
"PyYAML >= 6.0.2",
"requests >= 2.32.3",
"xmltodict >= 0.14.2",
"PyYAML >= 6.0.3",
"requests >= 2.33.0",
"xmltodict >= 1.0.2",
]

def get_version():
Expand Down
2 changes: 1 addition & 1 deletion openapi/templates/test-requirements.mustache
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest~=7.1.3
pytest~=8.4.2
pytest-cov>=2.8.1
pytest-randomly>=3.12.0
mypy>=1.4.1
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ pydantic = ">=2"
typing-extensions = ">=4.7.1"

[tool.poetry.dev-dependencies]
pytest = ">=7.2.1"
tox = ">=3.9.0"
flake8 = ">=4.0.0"
pytest = ">=8.4.2"
tox = ">=4.30.3"
flake8 = ">=7.3.0"
types-python-dateutil = ">=2.8.19.14"
mypy = "1.4.1"

Expand Down
30 changes: 15 additions & 15 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
aenum==3.1.11
aiohttp==3.12.14
aenum==3.1.16
aiohttp==3.13.4
blinker==1.9.0
jwcrypto==1.5.6
pycryptodomex==3.23.0
pydantic==2.11.3
pydash==8.0.5
PyJWT==2.10.1
pydash==8.0.6
PyJWT==2.12.0
python-dateutil==2.9.0.post0
PyYAML==6.0.2
requests==2.32.3
xmltodict==0.14.2
PyYAML==6.0.3
requests==2.33.0
xmltodict==1.0.2

# Development & Testing Tools
flake8==7.1.2
pyfakefs==5.8.0
pytest==8.3.5
pytest-asyncio==0.26.0
pytest-mock==3.14.0
pytest-recording==0.13.2
tox==4.24.2
twine==6.1.0
flake8==7.3.0
pyfakefs==5.10.2
pytest==8.4.2
pytest-asyncio==1.2.0
pytest-mock==3.15.1
pytest-recording==0.13.4
tox==4.30.3
twine==6.2.0
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@
NAME = "okta"
PYTHON_REQUIRES = ">=3.10"
REQUIRES = [
"aenum >= 3.1.11",
"aiohttp >= 3.12.14",
"aenum >= 3.1.16",
"aiohttp >= 3.13.4",
"blinker >= 1.9.0",
'jwcrypto >= 1.5.6',
"pycryptodomex >= 3.23.0",
"pydantic >= 2.11.3",
"pydash >= 8.0.5",
"PyJWT >= 2.10.1",
"pydash >= 8.0.6",
"PyJWT >= 2.12.0",
"python-dateutil >= 2.9.0.post0",
"PyYAML >= 6.0.2",
"requests >= 2.32.3",
"xmltodict >= 0.14.2",
"PyYAML >= 6.0.3",
"requests >= 2.33.0",
"xmltodict >= 1.0.2",
]

def get_version():
Expand Down
2 changes: 1 addition & 1 deletion test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest~=7.1.3
pytest~=8.4.2
pytest-cov>=2.8.1
pytest-randomly>=3.12.0
mypy>=1.4.1
Expand Down