Skip to content

Commit

Permalink
add py313 support
Browse files Browse the repository at this point in the history
  • Loading branch information
agoscinski committed Dec 3, 2024
1 parent 352539d commit 3d72b40
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.12']
python-version: ['3.9', '3.13']

services:
postgres:
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
- name: Install aiida-core
uses: ./.github/actions/install-aiida-core
with:
python-version: '3.12'
python-version: '3.13'
from-lock: 'false'

- name: Run verdi tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']

services:
postgres:
Expand Down
3 changes: 2 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ dependencies:
- plumpy~=0.22.3
- pgsu~=0.3.0
- psutil~=5.6
- psycopg[binary]~=3.0
- psycopg-binary>=3.2.2,
- psycopg~=3.0,
- pydantic~=2.4
- pytz~=2021.1
- pyyaml~=6.0
Expand Down
15 changes: 13 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ classifiers = [
dependencies = [
'alembic~=1.2',
'archive-path~=0.4.2',
'circus~=0.18.0',
'circus~=0.19.0',
'click-spinner~=0.1.8',
'click~=8.1',
'disk-objectstore~=1.2',
Expand All @@ -37,7 +37,8 @@ dependencies = [
'plumpy~=0.22.3',
'pgsu~=0.3.0',
'psutil~=5.6',
'psycopg[binary]~=3.0',
'psycopg-binary>=3.2.2',
'psycopg~=3.0',
'pydantic~=2.4',
'pytz~=2021.1',
'pyyaml~=6.0',
Expand Down Expand Up @@ -423,6 +424,16 @@ select = [
'RUF' # ruff
]

[tool.uv]

[tool.uv.sources]
circus = { index = "testpypi" }

[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
explicit = true

[tool.tox]
legacy_tox_ini = """
[tox]
Expand Down
16 changes: 9 additions & 7 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3d72b40

Please sign in to comment.