Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CCXT] update for ccxt 4.3.56 #61

Merged
merged 2 commits into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2.25] - 2024-07-05
### Updated
- [CCXT] update to ccxt 4.3.56

## [1.2.24] - 2024-06-16
### Updated
- Exchanges: fix api key format errors
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# trading-backend [1.2.24](https://github.com/Drakkar-Software/trading-backend/tree/master/CHANGELOG.md)
# trading-backend [1.2.25](https://github.com/Drakkar-Software/trading-backend/tree/master/CHANGELOG.md)
[![PyPI](https://img.shields.io/pypi/v/trading-backend.svg)](https://pypi.python.org/pypi/trading-backend/)
[![Downloads](https://pepy.tech/badge/trading-backend/month)](https://pepy.tech/project/trading-backend)
[![Github-Action-CI](https://github.com/Drakkar-Software/trading-backend/workflows/trading-backend-CI/badge.svg)](https://github.com/Drakkar-Software/trading-backend/actions)
Expand Down
2 changes: 1 addition & 1 deletion dev_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ pur

pylint

ccxt==4.2.95 # use to run test using a specific version of ccxt
ccxt==4.3.56 # use to run test using a specific version of ccxt
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from setuptools import find_packages
from setuptools import setup

VERSION = "1.2.24"
VERSION = "1.2.25"
PROJECT_NAME = "trading-backend"

PACKAGES = find_packages(exclude=["tests"])
Expand Down
2 changes: 1 addition & 1 deletion tests/exchanges/test_coinex.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async def test_get_orders_parameters(coinex_exchange):
exchange = exchanges.Coinex(coinex_exchange)
await create_order_tests.create_order_mocked_test_args(
exchange,
exchange_private_post_order_method_name="v1PrivatePostOrderLimit",
exchange_private_post_order_method_name="v2PrivatePostSpotOrder",
exchange_request_referral_key="client_id",
should_contains=True)

Expand Down
Loading