Skip to content

Commit

Permalink
Updating test targets & bumping bugfix version.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcferrill committed Oct 23, 2023
1 parent 3341fc8 commit d4acc88
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ docs/doctrees
.pdm.toml
.vscode
*.xml
__pypackages__
__pypackages__
.pdm-python
22 changes: 20 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
trigger:
- master

name: '1.1.18'
name: '1.1.19'

jobs:

Expand All @@ -19,6 +19,12 @@ jobs:
Ubuntu-py3.9:
imageName: 'ubuntu-latest'
python.version: '3.9'
Ubuntu-py3.10:
imageName: 'ubuntu-latest'
python.version: '3.10'
Ubuntu-py3.11:
imageName: 'ubuntu-latest'
python.version: '3.11'
macOS-py3.7:
imageName: 'macos-latest'
python.version: '3.7'
Expand All @@ -28,6 +34,12 @@ jobs:
macOS-py3.9:
imageName: 'macos-latest'
python.version: '3.9'
macOS-py3.10:
imageName: 'macos-latest'
python.version: '3.10'
macOS-py3.11:
imageName: 'macos-latest'
python.version: '3.11'
Windows-py3.7:
imageName: 'windows-latest'
python.version: '3.7'
Expand All @@ -37,6 +49,12 @@ jobs:
Windows-py3.9:
imageName: 'windows-latest'
python.version: '3.9'
Windows-py3.10:
imageName: 'windows-latest'
python.version: '3.10'
Windows-py3.11:
imageName: 'windows-latest'
python.version: '3.11'

pool:
vmImage: $(imageName)
Expand Down Expand Up @@ -101,7 +119,7 @@ jobs:
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: "3.9"
versionSpec: "3.11"
architecture: 'x64'

- script: python -m pip install -U pip pdm
Expand Down
2 changes: 1 addition & 1 deletion chapter10/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .c10 import C10, TYPES
from .packet import Packet, InvalidPacket
version = '1.1.18'
version = '1.1.19'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pychapter10"
version = "1.1.18"
version = "1.1.19"
description = "A parser library for the IRIG 106 Chapter 10 data format."
authors = [
{name = "Micah Ferrill", email = "ferrillm@avtest.com"},
Expand Down

0 comments on commit d4acc88

Please sign in to comment.