Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,24 +180,6 @@ jobs:
paths:
- "/home/circleci/.local"
- compile_and_test
- run:
name: Install dependencies for wheel test
command: |
ARGO_NET_GIT_FETCH_WITH_CLI=1 pip install twine --user
# Remove tskit installed by msprime
pip uninstall tskit -y
- run:
name: Build Python package
command: |
cd python
rm -fR build
python -m pip install build
python -m venv venv
python -m build --sdist
python -m twine check dist/*.tar.gz
python -m build --wheel
pip install dist/*.whl
tskit --help

build-32:
docker:
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,18 @@ on:

env:
FORCE_COLOR: 1

jobs:
pre-commit:
name: Lint
uses: tskit-dev/.github/.github/workflows/lint.yml@v2
uses: tskit-dev/.github/.github/workflows/lint.yml@v4

packaging:
name: Python packaging
uses: tskit-dev/.github/.github/workflows/python-packaging.yml@v4
with:
working-directory: python
cli-test-cmd: tskit --help

test:
name: Python
Expand Down Expand Up @@ -53,7 +61,7 @@ jobs:
with:
python-version: ${{ matrix.python }}
version: "0.8.15"

- name: Install dependencies
working-directory: python
run: |
Expand Down
3 changes: 1 addition & 2 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ authors = [
]
description = "The tree sequence toolkit."
readme = "README.rst"
license = {text = "MIT"}
license = "MIT"
classifiers = [
"Programming Language :: C",
"Programming Language :: Python",
Expand All @@ -23,7 +23,6 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
Expand Down