Skip to content

Commit

Permalink
feat: Support pypy and pkg change metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
zhongjiajie committed Oct 18, 2023
1 parent 9a28820 commit 4e17093
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ jobs:
matrix:
# YAML parse `3.10` to `3.1`, so we have to add quotes for `'3.10'`, see also:
# https://github.com/actions/setup-python/issues/160#issuecomment-724485470
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: [
'3.8', '3.9', '3.10', '3.11', '3.12',
'pypy3.9', 'pypy3.10',
]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -80,6 +83,7 @@ jobs:
timeout-minutes: 15
needs:
- pytest
- lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[![CI](https://github.com/zhongjiajie/stmdency/actions/workflows/ci.yaml/badge.svg)](https://github.com/zhongjiajie/stmdency/actions/workflows/ci.yaml)
[![Documentation Status](https://readthedocs.org/projects/stmdency/badge/?version=latest)](https://stmdency.readthedocs.io/en/latest/?badge=latest)

stmdency, **sta**tement depen**dency** is a Python library for extracting dependencies between statements in a Python program.
Stmdency, **ST**ate**M**ent depen**DENCY** is a Python library for extracting dependencies between Python statements.

## Installation

Expand Down
5 changes: 4 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = stmdency
version = attr: stmdency.__version__
url = https://github.com/zhongjiajie/stmdency
description = A library extracting dependencies between statements in Python program.
description = A library extracting dependencies between Python statements.
long_description = file: README.md
long_description_content_type = text/markdown
author = Jay Chung
Expand All @@ -23,8 +23,11 @@ classifiers =
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Environment :: Console
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: User Interfaces
Topic :: Utilities
project_urls =
Source = https://github.com/zhongjiajie/stmdency
Issue Tracker = https://github.com/zhongjiajie/stmdency/issues
Expand Down

0 comments on commit 4e17093

Please sign in to comment.