Skip to content

Commit ac9f3cb

Browse files
authored
Merge pull request #35 from HyperionGray/copilot/cleanup-and-functionality-check
Modernize dependencies and CI/CD configuration
2 parents 0a7784b + 8b9b7bf commit ac9f3cb

File tree

4 files changed

+747
-518
lines changed

4 files changed

+747
-518
lines changed

.readthedocs.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
22
version: 2
33

4+
build:
5+
os: ubuntu-22.04
6+
tools:
7+
python: "3.10"
8+
49
sphinx:
510
configuration: docs/conf.py
611

712
python:
8-
version: 3.7
913
install:
1014
- requirements: docs/requirements.txt

.travis.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
language: python
2-
dist: xenial
2+
dist: jammy
33

44
git:
55
depth: 1
66

7-
matrix:
7+
jobs:
88
include:
9-
- python: 3.7
9+
- python: "3.8"
10+
- python: "3.9"
11+
- python: "3.10"
12+
- python: "3.11"
13+
- python: "3.12"
1014

1115
before_install:
1216
- pip install poetry

0 commit comments

Comments
 (0)