Skip to content

Commit

Permalink
Merge pull request #66 from asmeurer/python313
Browse files Browse the repository at this point in the history
feat: python 3.13 support + prep for 1.5.2
  • Loading branch information
Saransh-cpp authored Nov 25, 2024
2 parents 0e2b777 + d64ce8c commit ac1e8b3
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 17 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,7 @@ jobs:
with:
fetch-depth: 0

- name: Build SDist and wheel
run: pipx run build

- uses: actions/upload-artifact@v4
with:
path: dist/*

- name: Check metadata
run: pipx run twine check dist/*
- uses: hynek/build-and-inspect-python-package@v2

publish:
needs: [dist]
Expand All @@ -40,4 +32,7 @@ jobs:
name: artifact
path: dist

- name: List distributions to be deployed
run: ls -l dist/

- uses: pypa/gh-action-pypi-publish@release/v1
12 changes: 4 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,16 @@ jobs:
allow-prereleases: true

- name: Install removestar (lite)
run: |
python -m pip install -e ".[dev]"
run: python -m pip install -e ".[dev]"

- name: Test removestar (lite)
run: |
pytest --cov=removestar . -vv
run: pytest --cov=removestar . -vv

- name: Install removestar (nb)
run: |
python -m pip install -e ".[dev,nb]"
run: python -m pip install -e ".[dev,nb]"

- name: Test removestar (nb)
run: |
pytest --cov=removestar . -vv
run: pytest --cov=removestar . -vv

- name: Upload coverage report
uses: codecov/[email protected]
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# 1.5.2 (2024-11-25)

## Features

- Python 3.13 support

## Maintenance

- Get rid of deprecated actions
- Add dependabot config
- pre-commit autoupdate

# 1.5.1 (2024-08-14)

## Fixes
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,13 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"pyflakes",
Expand Down

0 comments on commit ac1e8b3

Please sign in to comment.