Skip to content

Commit 33f9476

Browse files
authored
Merge pull request #69 from TankerHQ/tim/py312
maint: Upgrade to Python 3.12
2 parents 7bff7f2 + 0bb783a commit 33f9476

7 files changed

Lines changed: 570 additions & 165 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Python
1313
uses: actions/setup-python@v4
1414
with:
15-
python-version: '3.11'
15+
python-version: '3.12'
1616
- name: Install and configure poetry
1717
run: python -m pip install poetry
1818
- name: Install python packages

.github/workflows/install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ['3.11']
12+
python-version: ['3.12']
1313
steps:
1414
- name: Set up Python ${{ matrix.python-version }}
1515
uses: actions/setup-python@v4

.github/workflows/linters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
python-version: ['3.11']
9+
python-version: ['3.12']
1010
steps:
1111
- uses: actions/checkout@v3
1212

.github/workflows/safety.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ['3.11']
12+
python-version: ['3.12']
1313
steps:
1414
- uses: actions/checkout@v3
1515

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
python-version: ['3.11']
10+
python-version: ['3.12']
1111
steps:
1212
- uses: actions/checkout@v3
1313

poetry.lock

Lines changed: 562 additions & 157 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ homepage = "https://github.com/TankerHQ/identity-python"
77
readme = "README.md"
88

99
[tool.poetry.dependencies]
10-
python = "^3.11"
10+
python = "^3.12"
1111
PyNacl = "1.5.0"
1212

1313
[tool.poetry.dev-dependencies]
14-
black = "22.3.0"
14+
black = "24.3.0"
1515
pytest = "7.2.0"
1616
pytest-cov = "4.0.0"
1717
mypy = "1.5"
18-
safety = "2.3.5"
18+
safety = "3.1.0"
1919
tbump = "6.9.0"
2020

2121
[build-system]

0 commit comments

Comments
 (0)