Skip to content

Commit

Permalink
Add support for python 3.13 (#328)
Browse files Browse the repository at this point in the history
  • Loading branch information
kasium authored Oct 11, 2024
1 parent f2a6024 commit f3b4cda
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}
- uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '3.13'
- name: Install project
run: pip install -e .[dev,test,alembic]
- name: run pre-commit
Expand All @@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
sqlalchemy-version: [1.4.*, 2.0.*]
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '3.13'
- name: Install project
run: pip install -e .
- name: Install libraries
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -412,9 +412,9 @@ error and raise a more specific exception if possible.
Development Setup
-----------------
We recommend the usage of ``pyenv`` to install a proper 3.12 python version for development.
We recommend the usage of ``pyenv`` to install a proper 3.13 python version for development.

* ``pyenv install 3.12``
* ``pyenv install 3.13``
* ``python311 -m venv venv``
* ``source venv/bin/activate``
* ``pip install -U pip``
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: SQL",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
Expand Down

0 comments on commit f3b4cda

Please sign in to comment.