Skip to content

Commit

Permalink
remove dependencies from install_requires (#946)
Browse files Browse the repository at this point in the history
  • Loading branch information
dunckerr authored Jan 24, 2022
1 parent e7f6d39 commit 4081af6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ defaults: &defaults
. ci/bin/activate
ls -la /bin | grep mongo
which mongod
py.test -svvvvv --junitxml=test-results/junit.xml
#py.test -svvvvv --junitxml=test-results/junit.xml
python setup.py test --pytest-args=-v
- store_test_results:
path: test-results
# Save artifacts
Expand Down
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
### 1.80.4 (2022-01-25)
* Bugfix: #940 fix rows per chunk causing divide by zero
* Feature: #943 check markdown rendering of README.md and CHANGES.md in build
* Bugfix: #946 move test dependencies to tests_require

### 1.80.3 (2022-01-20)
* Feature: #941 use named index for VersionStore to avoid 127 max fully qualified index name
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Arctic can query millions of rows per second per client, achieves ~10x compressi
Arctic has been under active development at [Man AHL](https://www.man.com/ahl) since 2012.

* Stable Version 1.79.3
* Beta Version 1.80.3
* Beta Version 1.80.4

## Quickstart

Expand Down
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def run_tests(self):
args.extend(['--cov', 'arctic',
'--cov-report', 'xml',
'--cov-report', 'html',
'--junitxml', 'junit.xml',
'--junitxml', 'test-results/junit.xml',
])
errno = pytest.main(args)
sys.exit(errno)
Expand Down Expand Up @@ -81,11 +81,7 @@ def run_tests(self):
"pandas<=1.0.3",
"numpy<=1.18.4",
"pymongo>=3.6.0, <= 3.11.0",
#"pytest-server-fixtures", # must be manual
"pytest-cov",
"pytest",
"pytz",
"tomli==1.2.3; python_version=='3.6'",
"tzlocal",
"lz4",
],
Expand All @@ -98,6 +94,7 @@ def run_tests(self):
"pytest-server-fixtures",
"pytest-timeout",
"pytest-xdist<=1.26.1",
"tomli<2; python_version=='3.6'",
"lz4"
],
entry_points={'console_scripts': [
Expand Down

0 comments on commit 4081af6

Please sign in to comment.