Skip to content

Commit

Permalink
feat: python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
severinsimmler committed Dec 12, 2024
1 parent ac35dc5 commit fd28ae0
Show file tree
Hide file tree
Showing 5 changed files with 1,106 additions and 1,129 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/setup-python@v2
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: "3.11"
python-version: "3.13"

- name: Install Python tools
run: pip install poetry cibuildwheel --pre
run: pip install poetry cibuildwheel

- name: Build wheels
run: cibuildwheel --output-dir dist

- name: Deploy wheels
run: poetry publish --username ${{ secrets.PYPI_USER }} --password ${{ secrets.PYPI_PW }}
run: poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }} && poetry publish
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@ target/
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
Expand Down
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.13.1
Loading

0 comments on commit fd28ae0

Please sign in to comment.