Skip to content

Commit f10f9f5

Browse files
authored
release/1.80.3 (man-group#942)
updated various versions to 1.80.3, CHANGES.md, and man-group github url
1 parent d3ef406 commit f10f9f5

File tree

5 files changed

+17
-14
lines changed

5 files changed

+17
-14
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
PYTHON_VERSION: "2_7"
103103
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts/2_7
104104
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results/2_7
105-
VERSION: 1.80.2
105+
VERSION: 1.80.3
106106
#PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
107107
#YARN_STATIC_DIR: notebooker/web/static/
108108
IMAGE_NAME: mangroup/arctic
@@ -115,7 +115,7 @@ jobs:
115115
PYTHON_VERSION: "3_6"
116116
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts/3_6
117117
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results/3_6
118-
VERSION: 1.80.2
118+
VERSION: 1.80.3
119119
#PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
120120
#YARN_STATIC_DIR: notebooker/web/static/
121121
IMAGE_NAME: mangroup/arctic
@@ -128,7 +128,7 @@ jobs:
128128
PYTHON_VERSION: "3_7"
129129
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts/3_7
130130
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results/3_7
131-
VERSION: 1.80.2
131+
VERSION: 1.80.3
132132
#PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
133133
#YARN_STATIC_DIR: notebooker/web/static/
134134
IMAGE_NAME: mangroup/arctic

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.80.3 (2022-01-20)
4+
* Feature: #941 use named index for VersionStore to avoid 127 max fully qualified index name
5+
* Bugfix: #935, #936 fixed README.md rendering which was preventing pypi upload
6+
37
### 1.80.2 (2022-01-10)
48
* Bugfix: #932 revert serialization-optimization (#909, #910)
59

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# [![arctic](logo/arctic_50.png)](https://github.com/manahl/arctic) [Arctic TimeSeries and Tick store](https://github.com/manahl/arctic)
1+
# [![arctic](logo/arctic_50.png)](https://github.com/man-group/arctic) [Arctic TimeSeries and Tick store](https://github.com/man-group/arctic)
22

33

44
[![Documentation Status](https://readthedocs.org/projects/arctic/badge/?version=latest)](https://arctic.readthedocs.io/en/latest/?badge=latest)
55
[![CircleCI](https://circleci.com/gh/man-group/arctic/tree/master.svg?style=shield)](https://app.circleci.com/pipelines/github/man-group/arctic?branch=master)
66
[![PyPI](https://img.shields.io/pypi/v/arctic)](https://pypi.org/project/arctic/)
77
[![Travis CI](https://travis-ci.com/man-group/arctic.svg?branch=master)](https://travis-ci.org/man-group/arctic)
8-
[![Join the chat at https://gitter.im/manahl/arctic](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/manahl/arctic?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
8+
[![Join the chat at https://gitter.im/man-group/arctic](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/man-group/arctic?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
99

1010
Arctic is a high performance datastore for numeric data. It supports [Pandas](http://pandas.pydata.org/),
1111
[numpy](http://www.numpy.org/) arrays and pickled objects out-of-the-box, with pluggable support for
@@ -18,14 +18,14 @@ Arctic can query millions of rows per second per client, achieves ~10x compressi
1818
Arctic has been under active development at [Man AHL](https://www.man.com/ahl) since 2012.
1919

2020
* Stable Version 1.79.3
21-
* Beta Version 1.80.2
21+
* Beta Version 1.80.3
2222

2323
## Quickstart
2424

2525
### Install Arctic
2626

2727
``
28-
pip install git+https://github.com/manahl/arctic.git
28+
pip install git+https://github.com/man-group/arctic.git
2929
``
3030

3131
### Run a MongoDB
@@ -116,7 +116,7 @@ Arctic includes three storage engines:
116116
* [Documentation](docs/versionstore.md)
117117
* [TickStore](arctic/tickstore/tickstore.py): Column oriented tick database. Supports
118118
dynamic fields, chunks aren't versioned. Designed for large continuously ticking data.
119-
* [Chunkstore](https://github.com/manahl/arctic/wiki/Chunkstore): A storage type that allows data to be stored in customizable chunk sizes. Chunks
119+
* [Chunkstore](https://github.com/man-group/arctic/wiki/Chunkstore): A storage type that allows data to be stored in customizable chunk sizes. Chunks
120120
aren't versioned, and can be appended to and updated in place.
121121
* [Documentation](docs/chunkstore.md)
122122

@@ -128,7 +128,7 @@ Arctic storage implementations are **pluggable**. VersionStore is the default.
128128
Arctic currently works with:
129129

130130
* Python 3.6, 3.7
131-
* pymongo 3.60 thru 3.11.0
131+
* pymongo 3.6.0 thru 3.11.0
132132
* Pandas 0.22.0 thru 1.0.3
133133
* MongoDB >= 2.4.x
134134

mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Project info
22
site_name: Arctic
3-
site_url: https://github.com/manahl/arctic
3+
site_url: https://github.com/man-group/arctic
44
site_description: High performance datastore for numeric data
55

66
# Repository info
77
repo_name: 'arctic'
8-
repo_url: 'https://github.com/manahl/arctic'
8+
repo_url: 'https://github.com/man-group/arctic'
99
edit_uri: edit/master/docs/
1010

1111
theme:

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ def run_tests(self):
5959

6060
setup(
6161
name="arctic",
62-
version="1.80.2",
62+
version="1.80.3",
6363
author="Man AHL Technology",
6464
author_email="ManAHLTech@ahl.com",
6565
description=("AHL Research Versioned TimeSeries and Tick store"),
6666
license="GPL",
6767
keywords=["ahl", "keyvalue", "tickstore", "mongo", "timeseries", ],
68-
url="https://github.com/manahl/arctic",
68+
url="https://github.com/man-group/arctic",
6969
packages=find_packages(exclude=['tests', 'tests.*', 'benchmarks']),
7070
long_description='\n'.join((long_description, changelog)),
7171
long_description_content_type="text/markdown",
@@ -76,7 +76,6 @@ def run_tests(self):
7676
],
7777
install_requires=["decorator",
7878
"enum-compat",
79-
#"enum34",
8079
"mock",
8180
"mockextras",
8281
"pandas<=1.0.3",

0 commit comments

Comments
 (0)