Skip to content

Commit 0f3e2c9

Browse files
committed
Python 3.7 and betas compatability
1 parent 1f66369 commit 0f3e2c9

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

arca/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
__all__ = ["Arca", "BaseBackend", "VenvBackend", "DockerBackend", "Result", "Task", "CurrentEnvironmentBackend",
99
"RequirementsStrategy", "VagrantBackend"]
10-
__version__ = "0.2.0"
10+
__version__ = "0.2.1"

arca/backend/docker.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import hashlib
22
import json
3+
import platform
34
import signal
4-
import sys
55
import tarfile
66
import time
77

@@ -150,10 +150,10 @@ def get_dependencies(self) -> Optional[List[str]]:
150150
return dependencies
151151

152152
def get_python_version(self) -> str:
153-
""" Returns either the specified version from settings or a string of the sys.executable version.
153+
""" Returns either the specified version from settings or platform.python_version()
154154
"""
155155
if self.python_version is None:
156-
python_version = f"{sys.version_info.major}.{sys.version_info.minor}.{sys.version_info.micro}"
156+
python_version = platform.python_version()
157157
else:
158158
python_version = self.python_version
159159

docs/changes.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changes
22
=======
33

4+
0.2.1 (2018-06-11)
5+
******************
6+
7+
Updated dogpile.cache to 0.6.5, enabling compatability with Python 3.7.
8+
Updated the Docker backend to be able to run on Python betas.
9+
410
0.2.0 (2018-05-09)
511
******************
612

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
gitpython
22
pytest
3-
dogpile.cache==0.6.4
3+
dogpile.cache==0.6.5
44
docker~=3.1.0
55
pytest-flake8
66
pytest-cov

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def long_description():
2020

2121
setup(
2222
name="arca",
23-
version="0.2.0",
23+
version="0.2.1",
2424
author="Mikuláš Poul",
2525
author_email="[email protected]",
2626
description="A library for running Python functions (callables) from git repositories "
@@ -32,7 +32,7 @@ def long_description():
3232
long_description=long_description(),
3333
install_requires=[
3434
"gitpython==2.1.9",
35-
"dogpile.cache==0.6.4",
35+
"dogpile.cache==0.6.5",
3636
"requests",
3737
"entrypoints>=0.2.3",
3838
"cached-property",

0 commit comments

Comments
 (0)