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 5d177cc
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@
],
"contributorsPerLine": 7,
"projectName": "syrupy",
"projectOwner": "tophat",
"projectOwner": "syrupy-project",
"repoType": "github",
"repoHost": "https://github.com",
"skipCi": true,
Expand Down
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<img align="right" width="100px" height="100px" src="https://user-images.githubusercontent.com/2528959/69500147-85d71400-0ec6-11ea-867a-277881278e57.png" alt="Logo">

[![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors) [![Stage](https://img.shields.io/pypi/status/syrupy)](https://pypi.org/project/syrupy/) [![codecov](https://codecov.io/gh/syrupy-project/syrupy/graph/badge.svg?token=GB9EmYKPAl)](https://codecov.io/gh/syrupy-project/syrupy)
[![All Contributors](https://img.shields.io/github/all-contributors/syrupy-project/syrupy?color=ee8449&style=flat-square)](#contributors) [![Stage](https://img.shields.io/pypi/status/syrupy)](https://pypi.org/project/syrupy/) [![codecov](https://codecov.io/gh/syrupy-project/syrupy/graph/badge.svg?token=GB9EmYKPAl)](https://codecov.io/gh/syrupy-project/syrupy)

![Pytest>=5.1.0,<9.0.0](https://img.shields.io/badge/pytest-%3E%3D5.1.0,%20%3C9.0.0-green) [![Pypi](https://img.shields.io/pypi/v/syrupy)](https://pypi.org/project/syrupy/) [![Wheel](https://img.shields.io/pypi/wheel/syrupy)](https://pypi.org/project/syrupy/) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/syrupy) [![PyPI - Downloads](https://img.shields.io/pypi/dm/syrupy)](https://pypi.org/project/syrupy/) [![PyPI - License](https://img.shields.io/pypi/l/syrupy)](./LICENSE)

Expand Down
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 5d177cc

Please sign in to comment.