diff --git a/.circleci/config.yml b/.circleci/config.yml
deleted file mode 100644
index f7150d79e61c77a1275062b71b22ec4a4b86d127..0000000000000000000000000000000000000000
--- a/.circleci/config.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-version: 2.1
-executors:
-  my-executor:
-    docker:
-      - image: smokserwis/build:python3
-orbs:
-  code-climate: travelaudience/code-climate@0.1.5
-commands:
-  setup_python:
-    description: Set up requirements
-    steps:
-      - run:
-          command: |
-            pip install -e .[dev,test,extras]
-  unit_test:
-    description: Run the unit tests
-    steps:
-      - run: pytest -n 8 -vv --cov=satella
-jobs:
-  test:
-    executor: my-executor
-    steps:
-      - checkout
-      - code-climate/install
-      - setup_python
-      - unit_test
-      - run:
-          name: Collect results
-          command:
-            coverage xml
-      - code-climate/format_coverage:
-          input_type: coverage.py
-          coverage_file: coverage.xml
-      - code-climate/upload_coverage
-workflows:
-  unit_test:
-    jobs:
-      - test
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c262133a8c34e7857eb8b66603eef45b19868aee..0ad1d67a55c10c032a99cd5cd4e74baf07fc4bef 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,8 +6,8 @@
 Build system
 ============
 
-* Python 3.6 support dropped as it does not emply pyproject.toml, which is necessary
+* Python 3.6 support dropped as it does not employ pyproject.toml, which is necessary
   to build this
 * fixed unit tests to run on Py3.12
 * removed Docker unit tests
-* an unit test had some problems running under PyPy
+* a unit test had some problems running under PyPy
diff --git a/tests/test_instrumentation/test_memory.py b/tests/test_instrumentation/test_memory.py
index 56198130367cfbe62763584fcec4c0005ac88a3f..71dbbf30defb287c80f62153a16a4de579c938ca 100644
--- a/tests/test_instrumentation/test_memory.py
+++ b/tests/test_instrumentation/test_memory.py
@@ -22,7 +22,7 @@ class OnDemandCondition(CustomCondition):
 
 
 class TestMemory(unittest.TestCase):
-
+    @unittest.skipIf(sys.platform == 'PyPy', 'This will not work on PyPy')
     def test_get_size_dict(self):
         a = {'aba': 'aba'}