Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ jobs:
run: |
set -e
set -x
export PYPI_MOMENTO_WIRE_TYPE_VERSION=0.0.devBuild
export MOMENTO_SDK_VERSION=0.0.devBuild
python -m build
shell: bash
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import setuptools
import os
import time

version = os.getenv("MOMENTO_SDK_VERSION")

if [version == None]:
version = '0.0.dev'
if(version is None):
version = '0.0.localdev0'

# version is the only dynamic configuration
setuptools.setup(
Expand Down