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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.10'
- uses: pre-commit/action@v3.0.1

test_pipenv:
Expand All @@ -31,7 +31,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.10'
- run: pip install pipenv
- run: pipenv sync --dev
- run: pipenv run pytest
Expand All @@ -43,7 +43,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.10'
- run: pip install --upgrade setuptools
- name: Build package
run: python setup.py sdist
Expand All @@ -55,7 +55,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12']
fail-fast: false
runs-on: ${{ matrix.os }}
name: Run Tests on ${{ matrix.os }} - Python ${{ matrix.python-version }}
Expand All @@ -78,7 +78,7 @@ jobs:
run: git fetch --prune --unshallow --tags
- uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -97,7 +97,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.10'
- name: Install dependencies
run: pip install twine
- uses: actions/download-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ sphinx:
configuration: docs/source/conf.py

build:
os: ubuntu-20.04
os: ubuntu-22.04
tools:
python: "3.9"
python: "3.10"

python:
install:
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ an official release.
## Development Environment

This project uses `pipenv` for setting up a stable development environment.
The following assumes Python 3.8 and `pipenv` are installed on your system.
The following assumes Python 3.10 and `pipenv` are installed on your system.
You can set up the development environment like this:

```
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ urllib3 = ">=2.0.7" # responding to dependabot alert, affects only docs
Jinja2 = ">=3.1.4" # responding to dependabot alert, affects only docs

[requires]
python_version = "3.8"
python_version = "3.10"
Loading