From 765bbf520a9fe8f81eb3e9b27fc8ef87d9db4947 Mon Sep 17 00:00:00 2001 From: Bryant Moscon Date: Sun, 7 Jan 2024 11:55:05 -0500 Subject: [PATCH] Updates --- CHANGES.md | 3 ++- LICENSE | 2 +- README.md | 1 - cryptofeed/__init__.py | 2 +- cryptofeed/backends/_util.py | 2 +- cryptofeed/backends/aggregate.py | 2 +- cryptofeed/backends/arctic.py | 2 +- cryptofeed/backends/backend.py | 2 +- cryptofeed/backends/gcppubsub.py | 2 +- cryptofeed/backends/http.py | 2 +- cryptofeed/backends/influxdb.py | 2 +- cryptofeed/backends/kafka.py | 2 +- cryptofeed/backends/mongo.py | 2 +- cryptofeed/backends/postgres.py | 2 +- cryptofeed/backends/quest.py | 2 +- cryptofeed/backends/rabbitmq.py | 2 +- cryptofeed/backends/redis.py | 2 +- cryptofeed/backends/socket.py | 2 +- cryptofeed/backends/zmq.py | 2 +- cryptofeed/callback.py | 2 +- cryptofeed/config.py | 2 +- cryptofeed/connection.py | 2 +- cryptofeed/connection_handler.py | 2 +- cryptofeed/defines.py | 3 +-- cryptofeed/exceptions.py | 2 +- cryptofeed/exchange.py | 2 +- cryptofeed/feed.py | 2 +- cryptofeed/feedhandler.py | 2 +- cryptofeed/log.py | 2 +- cryptofeed/nbbo.py | 2 +- cryptofeed/raw_data_collection.py | 2 +- cryptofeed/symbols.py | 2 +- cryptofeed/types.pyx | 2 +- cryptofeed/util/book.py | 2 +- cryptofeed/util/perf.py | 2 +- cryptofeed/util/time.py | 2 +- docs/book_validation.md | 1 - setup.py | 4 ++-- tools/book_depth_test.py | 2 +- tools/book_test.py | 2 +- tools/check_raw_dump.py | 2 +- tools/generate_test_data.py | 4 ++-- tools/performance_metrics.py | 2 +- tools/run_profiler.py | 2 +- tools/tools.py | 2 +- 45 files changed, 46 insertions(+), 48 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 4ebee6b7f..5466d50e5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,12 +1,13 @@ ## Changelog -### 2.4.0 +### 2.4.0 (2024-01-07) * Update: Fix tests * Update: Okcoin moved to v5 API used by OKX * Bugfix: InfluxDB none type conversions * New Exchange: GateIO Futures * Bugfix: Fix instrument types in symbol parsing on Bitmex * Bugfix: fix crash issue when init symbol data on Kraken Futures + * Updates: Remove closed exchanges, clean up feeds (update APIs, adjust symbol parsing, etc) ### 2.3.2 (2023-05-27) * Bugfix: Fix Socket backend diff --git a/LICENSE b/LICENSE index 3c1cbc2d5..8b0824741 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to diff --git a/README.md b/README.md index 0c45ea5df..edd1b2863 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,6 @@ Handles multiple cryptocurrency exchange data feeds and returns normalized and s * [bitFlyer](https://bitflyer.com/) * [Bithumb](https://en.bithumb.com/) * [Bitstamp](https://www.bitstamp.net/) -* [Bittrex](https://global.bittrex.com/) * [Blockchain.com](https://www.blockchain.com/) * [Bybit](https://www.bybit.com/) * [Binance](https://www.binance.com/en) diff --git a/cryptofeed/__init__.py b/cryptofeed/__init__.py index e484d4c70..59cb91ef0 100644 --- a/cryptofeed/__init__.py +++ b/cryptofeed/__init__.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/backends/_util.py b/cryptofeed/backends/_util.py index 4b891e210..c5f44992b 100644 --- a/cryptofeed/backends/_util.py +++ b/cryptofeed/backends/_util.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/backends/aggregate.py b/cryptofeed/backends/aggregate.py index 4e8dd29b8..fc16764d7 100644 --- a/cryptofeed/backends/aggregate.py +++ b/cryptofeed/backends/aggregate.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/backends/arctic.py b/cryptofeed/backends/arctic.py index bc5d35060..36afca533 100644 --- a/cryptofeed/backends/arctic.py +++ b/cryptofeed/backends/arctic.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/backends/backend.py b/cryptofeed/backends/backend.py index 4657bc6b3..0fa122fd3 100644 --- a/cryptofeed/backends/backend.py +++ b/cryptofeed/backends/backend.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/backends/gcppubsub.py b/cryptofeed/backends/gcppubsub.py index 11f71b030..1f274052b 100644 --- a/cryptofeed/backends/gcppubsub.py +++ b/cryptofeed/backends/gcppubsub.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/backends/http.py b/cryptofeed/backends/http.py index 794bb2df8..49dbe1a7e 100644 --- a/cryptofeed/backends/http.py +++ b/cryptofeed/backends/http.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/backends/influxdb.py b/cryptofeed/backends/influxdb.py index 8f531b82a..d23b8ff91 100644 --- a/cryptofeed/backends/influxdb.py +++ b/cryptofeed/backends/influxdb.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/backends/kafka.py b/cryptofeed/backends/kafka.py index d172dba0a..9ba77836e 100644 --- a/cryptofeed/backends/kafka.py +++ b/cryptofeed/backends/kafka.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/backends/mongo.py b/cryptofeed/backends/mongo.py index 9996cd4d1..24e3d03b8 100644 --- a/cryptofeed/backends/mongo.py +++ b/cryptofeed/backends/mongo.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/backends/postgres.py b/cryptofeed/backends/postgres.py index 6c379a007..6b953a0d6 100644 --- a/cryptofeed/backends/postgres.py +++ b/cryptofeed/backends/postgres.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/backends/quest.py b/cryptofeed/backends/quest.py index c7c177798..a1a89c82b 100644 --- a/cryptofeed/backends/quest.py +++ b/cryptofeed/backends/quest.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/backends/rabbitmq.py b/cryptofeed/backends/rabbitmq.py index 07d8f3a79..a10daaf7c 100644 --- a/cryptofeed/backends/rabbitmq.py +++ b/cryptofeed/backends/rabbitmq.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/backends/redis.py b/cryptofeed/backends/redis.py index 0de67e85b..6bf43c0a4 100644 --- a/cryptofeed/backends/redis.py +++ b/cryptofeed/backends/redis.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/backends/socket.py b/cryptofeed/backends/socket.py index fc2b1ba9d..f31d0bfbd 100644 --- a/cryptofeed/backends/socket.py +++ b/cryptofeed/backends/socket.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/backends/zmq.py b/cryptofeed/backends/zmq.py index da5729ea8..42919346a 100644 --- a/cryptofeed/backends/zmq.py +++ b/cryptofeed/backends/zmq.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/callback.py b/cryptofeed/callback.py index 5ec59ab41..84e7d0dbb 100644 --- a/cryptofeed/callback.py +++ b/cryptofeed/callback.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/config.py b/cryptofeed/config.py index f1ac24352..e604912d3 100644 --- a/cryptofeed/config.py +++ b/cryptofeed/config.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/connection.py b/cryptofeed/connection.py index 0825f3e04..49f306099 100644 --- a/cryptofeed/connection.py +++ b/cryptofeed/connection.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/connection_handler.py b/cryptofeed/connection_handler.py index 3bb0ec91b..2460b10aa 100644 --- a/cryptofeed/connection_handler.py +++ b/cryptofeed/connection_handler.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/defines.py b/cryptofeed/defines.py index 10bbe8c2c..30b367a25 100644 --- a/cryptofeed/defines.py +++ b/cryptofeed/defines.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. @@ -24,7 +24,6 @@ BITFLYER = 'BITFLYER' BITGET = 'BITGET' BITSTAMP = 'BITSTAMP' -BITTREX = 'BITTREX' BLOCKCHAIN = 'BLOCKCHAIN' BYBIT = 'BYBIT' COINBASE = 'COINBASE' diff --git a/cryptofeed/exceptions.py b/cryptofeed/exceptions.py index c5c7515da..42846c0b1 100644 --- a/cryptofeed/exceptions.py +++ b/cryptofeed/exceptions.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/exchange.py b/cryptofeed/exchange.py index 7194441a1..a698db805 100644 --- a/cryptofeed/exchange.py +++ b/cryptofeed/exchange.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/feed.py b/cryptofeed/feed.py index bed48e2b8..9ea939cf1 100644 --- a/cryptofeed/feed.py +++ b/cryptofeed/feed.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/feedhandler.py b/cryptofeed/feedhandler.py index b5a93e6df..449d3812f 100644 --- a/cryptofeed/feedhandler.py +++ b/cryptofeed/feedhandler.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/log.py b/cryptofeed/log.py index f8f57b96e..6c814edb5 100644 --- a/cryptofeed/log.py +++ b/cryptofeed/log.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/nbbo.py b/cryptofeed/nbbo.py index 26c856a67..51b6b729f 100644 --- a/cryptofeed/nbbo.py +++ b/cryptofeed/nbbo.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/raw_data_collection.py b/cryptofeed/raw_data_collection.py index 59dfd585e..e89f28d5e 100644 --- a/cryptofeed/raw_data_collection.py +++ b/cryptofeed/raw_data_collection.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/symbols.py b/cryptofeed/symbols.py index cb024854a..83a3a1e85 100644 --- a/cryptofeed/symbols.py +++ b/cryptofeed/symbols.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/types.pyx b/cryptofeed/types.pyx index 17a6c4194..757357b66 100644 --- a/cryptofeed/types.pyx +++ b/cryptofeed/types.pyx @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/util/book.py b/cryptofeed/util/book.py index 66959b143..0197b1c4b 100644 --- a/cryptofeed/util/book.py +++ b/cryptofeed/util/book.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/util/perf.py b/cryptofeed/util/perf.py index d85474665..a764e0329 100644 --- a/cryptofeed/util/perf.py +++ b/cryptofeed/util/perf.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/cryptofeed/util/time.py b/cryptofeed/util/time.py index 7fecdc7db..75a518033 100644 --- a/cryptofeed/util/time.py +++ b/cryptofeed/util/time.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/docs/book_validation.md b/docs/book_validation.md index d23e47069..a3eb27f65 100644 --- a/docs/book_validation.md +++ b/docs/book_validation.md @@ -11,7 +11,6 @@ Some exchanges support methods for ensuring orderbooks are correct. The two most | Bequant | | x | | | | Bitfinex | | x | | | | Bitstamp | | | x | | -| Bittrex | | x | | | | Blockchain.com| | x | | | | Bybit | | | x | | | Binance | | x | | | diff --git a/setup.py b/setup.py index 8ab002d47..cf2cb1f3a 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. @@ -55,7 +55,7 @@ def run_tests(self): license="XFree86", keywords=["cryptocurrency", "bitcoin", "btc", "feed handler", "market feed", "market data", "crypto assets", "Trades", "Tickers", "BBO", "Funding", "Open Interest", "Liquidation", "Order book", "Bid", "Ask", - "fmfw.io", "Bitfinex", "bitFlyer", "AscendEX", "Bitstamp", "Bittrex", "Blockchain.com", "Bybit", + "fmfw.io", "Bitfinex", "bitFlyer", "AscendEX", "Bitstamp", "Blockchain.com", "Bybit", "Binance", "Binance Delivery", "Binance Futures", "Binance US", "BitMEX", "Coinbase", "Deribit", "EXX", "Gate.io", "Gemini", "HitBTC", "Huobi", "Huobi DM", "Huobi Swap", "Kraken", "Kraken Futures", "OKCoin", "OKX", "Poloniex", "ProBit", "Upbit"], diff --git a/tools/book_depth_test.py b/tools/book_depth_test.py index 2199ebd48..92b400a1b 100644 --- a/tools/book_depth_test.py +++ b/tools/book_depth_test.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/tools/book_test.py b/tools/book_test.py index 8d0836b93..76305c42c 100644 --- a/tools/book_test.py +++ b/tools/book_test.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/tools/check_raw_dump.py b/tools/check_raw_dump.py index 16ea480d2..fd8f4cddf 100644 --- a/tools/check_raw_dump.py +++ b/tools/check_raw_dump.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/tools/generate_test_data.py b/tools/generate_test_data.py index 3a2a7c70b..ec046803c 100644 --- a/tools/generate_test_data.py +++ b/tools/generate_test_data.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. @@ -82,4 +82,4 @@ def main(only_exchange=None): if __name__ == '__main__': - main('OKCOIN') + main('BIT.COM') diff --git a/tools/performance_metrics.py b/tools/performance_metrics.py index 64c5f94c1..a490ed6c5 100644 --- a/tools/performance_metrics.py +++ b/tools/performance_metrics.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/tools/run_profiler.py b/tools/run_profiler.py index ca887141d..9f63335e2 100644 --- a/tools/run_profiler.py +++ b/tools/run_profiler.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software. diff --git a/tools/tools.py b/tools/tools.py index a10b3523c..5acb3b8ec 100644 --- a/tools/tools.py +++ b/tools/tools.py @@ -1,5 +1,5 @@ ''' -Copyright (C) 2017-2023 Bryant Moscon - bmoscon@gmail.com +Copyright (C) 2017-2024 Bryant Moscon - bmoscon@gmail.com Please see the LICENSE file for the terms and conditions associated with this software.