diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0e22806..2809880 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,23 +21,30 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python_version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + python_version: ["3.12"] include: - os: windows-2019 python_version: "3.6" - - os: ubuntu-20.04 - python_version: "3.6" + - os: windows-latest + python_version: "3.7" + - os: macos-latest + python_version: "3.8" + - os: ubuntu-latest + python_version: "3.9" + - os: windows-latest + python_version: "3.10" + - os: macos-latest + python_version: "3.11" runs-on: ${{ matrix.os }} steps: - name: Check out repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Configure Python version - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python_version }} - architecture: x64 - name: Build sdist run: | diff --git a/.gitignore b/.gitignore index ce54a64..9e6b1ff 100644 --- a/.gitignore +++ b/.gitignore @@ -115,3 +115,6 @@ dmypy.json # Pyre type checker .pyre/ + +# PyCharm +.idea