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
46 changes: 0 additions & 46 deletions .azure/pipelines/linux-template.yml

This file was deleted.

39 changes: 0 additions & 39 deletions .azure/pipelines/macos-template.yml

This file was deleted.

52 changes: 0 additions & 52 deletions .azure/pipelines/prerelease.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .azure/pipelines/release.yml

This file was deleted.

15 changes: 0 additions & 15 deletions .azure/pipelines/security.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .azure/pipelines/tests.yml

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/pep8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Python 3.7
uses: actions/setup-python@master
- uses: actions/checkout@v5
- name: Setup Python
uses: actions/setup-python@v5
with:
version: 3.7
python-version: '3.12'
- name: flake8
run: |
pip install flake8
Expand Down
59 changes: 34 additions & 25 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@ name: Build and upload to PyPI

on:
workflow_dispatch:
pull_request:
push:
branches:
- main
release:
types:
- published
Expand All @@ -20,11 +16,6 @@ jobs:
matrix:
include:
# Linux 64 bit manylinux2014
- os: ubuntu-latest
python: '3.9'
cp: '39'
platform_id: manylinux_x86_64
manylinux_image: manylinux2014
- os: ubuntu-latest
python: '3.10'
cp: '310'
Expand All @@ -40,46 +31,64 @@ jobs:
cp: '312'
platform_id: manylinux_x86_64
manylinux_image: manylinux2014
- os: ubuntu-latest
python: '3.13'
cp: '313'
platform_id: manylinux_x86_64
manylinux_image: manylinux2014
- os: ubuntu-latest
python: '3.14'
cp: '314'
platform_id: manylinux_x86_64
manylinux_image: manylinux2014

# MacOS x86_64
- os: macos-13
python: '3.9'
cp: '39'
platform_id: macosx_x86_64
- os: macos-13
- os: macos-latest-large
python: '3.10'
cp: '310'
platform_id: macosx_x86_64
- os: macos-13
- os: macos-latest-large
python: '3.11'
cp: '311'
platform_id: macosx_x86_64
- os: macos-13
- os: macos-latest-large
python: '3.12'
cp: '312'
platform_id: macosx_x86_64
- os: macos-latest-large
python: '3.13'
cp: '313'
platform_id: macosx_x86_64
- os: macos-latest-large
python: '3.14'
cp: '314'
platform_id: macosx_x86_64

# MacOS arm64
- os: macos-14
python: '3.9'
cp: '39'
platform_id: macosx_arm64
- os: macos-14
- os: macos-latest
python: '3.10'
cp: '310'
platform_id: macosx_arm64
- os: macos-14
- os: macos-latest
python: '3.11'
cp: '311'
platform_id: macosx_arm64
- os: macos-14
- os: macos-latest
python: '3.12'
cp: '312'
platform_id: macosx_arm64
- os: macos-latest
python: '3.13'
cp: '313'
platform_id: macosx_arm64
- os: macos-latest
python: '3.14'
cp: '314'
platform_id: macosx_arm64

steps:
- name: Checkout TextWorld
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Build Wheel
uses: pypa/cibuildwheel@v2.22.0
Expand Down Expand Up @@ -127,7 +136,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup Python
uses: actions/setup-python@v5
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13, macos-14]
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
os: [ubuntu-latest, macos-latest, macos-large]
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Use Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
Expand Down
Loading
Loading