FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
patsy/patsy/version.py at pre-commit-ci-update-config · IBMZ-Linux-OSS-Python/patsy · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
IBMZ-Linux-OSS-Python
/
patsy
Public
forked from
pydata/patsy
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
patsy
/
patsy
/
version.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
20 lines (17 loc) · 823 Bytes
Breadcrumbs
patsy
/
patsy
/
version.py
Copy path
File metadata and controls
20 lines (17 loc) · 823 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# This file is part of Patsy
# Copyright (C) 2011-2014 Nathaniel Smith <njs@pobox.com>
# See file LICENSE.txt for license information.
# This file must be kept very simple, because it is consumed from several
# places -- it is imported by patsy/__init__.py, execfile'd by setup.py, etc.
# We use a simple scheme:
# 1.0.1 -> 1.0.1+dev -> 1.1.0 -> 1.1.0+dev
# where the +dev versions are never released into the wild, they're just what
# we stick into the VCS in between releases.
#
# This is compatible with PEP 440:
# http://legacy.python.org/dev/peps/pep-0440/
# via the use of the "local suffix" "+dev", which is disallowed on index
# servers and causes 1.0.1+dev to sort after plain 1.0.1, which is what we
# want. (Contrast with the special suffix 1.0.1.dev, which sorts *before*
# 1.0.1.)
__version__
=
"1.0.1"
Back
|
FazBrowse Home
|
New Git URL