Skip to content

Commit

Permalink
fix: update classifiers, metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
noahnu committed Aug 21, 2024
1 parent ee87380 commit 6d261e5
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ runs:
id: detect-python
run: |
if [[ -z "${{ inputs.python-version }}" ]]; then
echo "version=$(cat .python-version | tr -d '\n')" >> $GITHUB_OUTPUT
echo "version=$(head -n1 .python-version | tr -d '\n')" >> $GITHUB_OUTPUT
else
echo "version=${{ inputs.python-version }}" >> $GITHUB_OUTPUT
fi
shell: bash
- name: Detect Poetry Version
id: detect-poetry
run: |
echo "version=$(cat .poetry-version | tr -d '\n')" >> $GITHUB_OUTPUT
echo "version=$(head -n1 .poetry-version | tr -d '\n')" >> $GITHUB_OUTPUT
shell: bash
- name: Set up Python ${{ inputs.python-version }}
uses: actions/setup-python@v5.0.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12-dev']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13-dev']
fail-fast: true
steps:
- uses: actions/checkout@v4.1.1
Expand All @@ -53,7 +53,7 @@ jobs:
shell: bash
- name: Run Tests (with coverage)
id: tests-with-coverage
if: matrix.python-version == '3.12-dev' && matrix.os == 'ubuntu-latest'
if: matrix.python-version == '3.13-dev' && matrix.os == 'ubuntu-latest'
shell: bash
run: poetry run invoke test --coverage
- name: Run Tests
Expand Down
2 changes: 1 addition & 1 deletion .poetry-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.1
1.8.3
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.12.1
3.12.5
2 changes: 1 addition & 1 deletion poetry.lock

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

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ classifiers = [
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
Expand Down Expand Up @@ -102,5 +103,5 @@ source = ['./src']
exclude_lines = ['pragma: no-cover', 'if TYPE_CHECKING:', '@abstractmethod']

[build-system]
requires = ['poetry-core>=1.4.0']
requires = ['poetry-core>=1.9.0']
build-backend = 'poetry.core.masonry.api'

0 comments on commit 6d261e5

Please sign in to comment.