Skip to content

Commit

Permalink
Organizing versioning and docs config.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcferrill committed Feb 9, 2022
1 parent 4fa9007 commit f1a403a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
7 changes: 7 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2

python:
version: "3.9"
install:
- method: pip
path: .
6 changes: 1 addition & 5 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@
trigger:
- master

variables:
major: 1
minor: 1

name: $(major).$(minor)$(Rev:.r)
name: '1.1.15'

jobs:

Expand Down
1 change: 1 addition & 0 deletions chapter10/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
from .c10 import C10, TYPES
from .packet import Packet, InvalidPacket
version = '1.1.15'
5 changes: 2 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
import os
import sys
from datetime import datetime
from chapter10 import version as release


# -- Project information -----------------------------------------------------
Expand All @@ -22,7 +21,7 @@
author = 'Micah Ferrill - ATAC'

# The full version, including alpha/beta/rc tags
release = '1.1'
# release = '1.1'


# -- General configuration ---------------------------------------------------
Expand Down

0 comments on commit f1a403a

Please sign in to comment.