Skip to content

Commit 4afd32c

Browse files
committed
Packaging administrivia
1 parent 8ab7dae commit 4afd32c

3 files changed

Lines changed: 5 additions & 8 deletions

File tree

admin-tools/checkout_common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ function setup_version {
1414

1515
function checkout_finish {
1616
branch=$1
17+
pyenv local $PYTHON_VERSION
1718
cd $uncompyle6_owd
1819
git checkout $branch && pyenv local $PYTHON_VERSION && git pull
1920
rc=$?
20-
pyenv local $PYTHON_VERSION
2121
return $rc
2222
}

admin-tools/setup-python-3.6.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
#!/bin/bash
22
# Check out python-3.6-to-3.10 and dependent development branches.
3+
4+
PYTHON_VERSION=3.6
5+
36
bs=${BASH_SOURCE[0]}
47
if [[ $0 == $bs ]] ; then
58
echo "This script should be *sourced* rather than run directly through bash"
69
exit 1
710
fi
811

9-
PYTHON_VERSION=3.6
10-
1112
uncompyle6_owd=$(pwd)
1213
mydir=$(dirname $bs)
1314
cd $mydir

pyproject.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ classifiers = [
4646
"Programming Language :: Python :: 3.11",
4747
"Programming Language :: Python :: 3.12",
4848
"Programming Language :: Python :: 3.13",
49+
"Programming Language :: Python :: Implementation :: PyPy",
4950
]
5051
dynamic = ["version"]
5152

@@ -68,8 +69,3 @@ version = {attr = "uncompyle6.version.__version__"}
6869

6970
[tool.setuptools.packages.find]
7071
include = ["uncompyle6*"] # Include all subpackages
71-
72-
[tool.pyright]
73-
include = ["trepan"]
74-
# exclude = []
75-
ignore = ["dist", "docs", "tmp", ".cache"]

0 commit comments

Comments
 (0)