Skip to content

Commit 0977c33

Browse files
authored
CircleCI build environment tzlocal==4.2 (#1009)
1 parent 67bab9d commit 0977c33

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

.circleci/config.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,12 @@ defaults: &defaults
5151
virtualenv ci
5252
. ci/bin/activate
5353
python setup.py develop
54+
pip install --upgrade pip
5455
pip install pytest-server-fixtures[mongodb]
56+
echo y | pip uninstall tzlocal # because circleci will install >5.0b
57+
pip install tzlocal==4.2 # works for python 3.6 and 3.8
5558
pip freeze
5659
python --version
57-
- run:
58-
name: Check Markdown rendering
59-
command: |
60-
pip install --upgrade pip
61-
pip install readme_renderer
62-
echo CHANGES.md
63-
python -m readme_renderer CHANGES.md -o c.html
64-
echo README.md
65-
python -m readme_renderer README.md -o r.html
6660
# Save dependency cache
6761
- save_cache:
6862
key: v1-dep-{{ .Branch }}-{{ epoch }}

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Changelog
22

3+
### 1.81.2 (2023-05-11)
4+
* Feature: #1000, #1001, #1002, #1003, #1007, #1008 ArcticDB docs, links etc
5+
* Bugfix: #1009 force CircleCI to install tzlocal==4.2
6+
37
### 1.81.1 (2023-03-13)
48
* Feature: #996 release wheel to pypi as well as tar.gz, egg.
59

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def run_tests(self):
5858

5959
setup(
6060
name="arctic",
61-
version="1.81.1",
61+
version="1.81.2",
6262
author="Man AHL Technology",
6363
author_email="arctic@man.com",
6464
description=("AHL Research Versioned TimeSeries and Tick store"),
@@ -94,7 +94,7 @@ def run_tests(self):
9494
"pytest-xdist<=1.26.1",
9595
"tomli<2; python_version=='3.6'",
9696
"lz4",
97-
"tzlocal<=1.4; python_version<='3.6'"
97+
"tzlocal<=1.4; python_version<='3.6'",
9898
],
9999
entry_points={'console_scripts': [
100100
'arctic_init_library = arctic.scripts.arctic_init_library:main',

0 commit comments

Comments
 (0)