Skip to content

Commit

Permalink
docs: Decouple website download version from package version
Browse files Browse the repository at this point in the history
This prevents unreleased versions appearing on the website (e.g. 0.3.5.dev0),
but introduces the risk of forgetting to update the website after a release.
A better fix requires deeper design/workflow thought.

refs #1028
  • Loading branch information
moreati committed Nov 14, 2023
1 parent e580258 commit b7188c1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import sys

sys.path.append('..')
sys.path.append('.')
import mitogen
VERSION = '.'.join(str(part) for part in mitogen.__version__)

VERSION = '0.3.4'

author = u'Network Genomics'
copyright = u'2021, the Mitogen authors'
Expand Down

0 comments on commit b7188c1

Please sign in to comment.