Skip to content

Commit

Permalink
Adding also 3.11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
giovannipizzi committed Jul 7, 2023
1 parent 434c110 commit afdae26
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: "3.8"
- uses: pre-commit/action@v2.0.0

tests:
Expand All @@ -27,7 +27,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/concurrency.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
# Check all OSs (this is important!)
os: [ubuntu-latest, macos-latest, windows-latest]
# Testing extensively but only on two python versions, typically first and last supported
python-version: [3.8, "3.10"]
python-version: ["3.8", "3.11"]

# Do not run on forks
if: github.repository_owner == 'aiidateam'
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ classifiers = [
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
]
Expand Down

1 comment on commit afdae26

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'Benchmark on macos-latest'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: afdae26 Previous: 3911609 Ratio
tests/test_benchmark.py::test_pack_write 0.22299713579899436 iter/sec (stddev: 3.19344635682812) 1.4116852243504476 iter/sec (stddev: 0.03885426140656585) 6.33
tests/test_benchmark.py::test_pack_read 0.6183148311340453 iter/sec (stddev: 1.4365872273117377) 6.783471166231791 iter/sec (stddev: 0.00925035950405587) 10.97

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.