Skip to content
Snippets Groups Projects
Commit eb6a2d97 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Merge branch 'py39' into 'master'

Python 3.9 updates and bump to miniconda installer

Closes #69

See merge request !216
parents f48aacdc 2d04da36
Branches
Tags
1 merge request!216Python 3.9 updates and bump to miniconda installer
Pipeline #49603 passed
...@@ -206,12 +206,12 @@ def ensure_miniconda_sh(): ...@@ -206,12 +206,12 @@ def ensure_miniconda_sh():
# WARNING: if you update this version, remember to update hashes below # WARNING: if you update this version, remember to update hashes below
# AND our "mirror" in the internal webserver # AND our "mirror" in the internal webserver
path = "/miniconda/Miniconda3-py37_4.8.2-%s-x86_64.sh" path = "/miniconda/Miniconda3-py39_4.9.2-%s-x86_64.sh"
if platform.system() == "Darwin": if platform.system() == "Darwin":
md5sum = "e0320c20ea13d04407424ecf57b70eaf" md5sum = "0658832393a50f5a578bcad825304886"
path = path % "MacOSX" path = path % "MacOSX"
else: else:
md5sum = "87e77f097f6ebb5127c77662dfc3165e" md5sum = "b4e46fcc8029e2cfa731b788f25b1d36"
path = path % "Linux" path = path % "Linux"
if os.path.exists("miniconda.sh"): if os.path.exists("miniconda.sh"):
......
...@@ -42,7 +42,6 @@ requirements: ...@@ -42,7 +42,6 @@ requirements:
- python-gitlab - python-gitlab
- requests - requests
- sphinx - sphinx
- smmap <4
- pyyaml >=5.1 - pyyaml >=5.1
- twine <3 - twine <3
- lxml - lxml
......
{% set version = "1.3.1" %} {% set version = "1.4" %}
package: package:
name: docformatter name: docformatter
......
{% set name = "python-gitlab" %} {% set name = "python-gitlab" %}
{% set version = "2.2.0" %} {% set version = "2.6.0" %}
package: package:
name: {{ name|lower }} name: {{ name|lower }}
...@@ -7,7 +7,7 @@ package: ...@@ -7,7 +7,7 @@ package:
source: source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 4c4ea60c8303f4214522b18038df017cae35afda7474efa0b4e19c2e73bc3ae2 sha256: a862c6874524ab585b725a17b2cd2950fc09d6d74205f40a11be2a4e8f2dcaa1
build: build:
number: 0 number: 0
...@@ -22,6 +22,7 @@ requirements: ...@@ -22,6 +22,7 @@ requirements:
run: run:
- python >=3.6.0 - python >=3.6.0
- requests >=2.22.0 - requests >=2.22.0
- requests-toolbelt >=0.9.1
test: test:
imports: imports:
......
...@@ -8,19 +8,28 @@ version = open("version.txt").read().rstrip() ...@@ -8,19 +8,28 @@ version = open("version.txt").read().rstrip()
requires = [ requires = [
"setuptools", "setuptools",
"black >=19",
"click>=7", "click>=7",
"click-plugins", "click-plugins",
"conda>=4",
"conda-build>=3",
"conda-verify>=3",
"certifi", "certifi",
"docformatter",
"requests", "requests",
"gitpython", "gitpython",
"graphviz",
"python-gitlab", "python-gitlab",
"sphinx", "sphinx",
"pyyaml>=5.1", "pyyaml>=5.1",
"twine", "python-dateutil",
"twine<3",
"lxml", "lxml",
"jinja2", "jinja2",
"tabulate",
"termcolor", "termcolor",
"psutil", "psutil",
"pytz",
] ]
setup( setup(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment