Skip to content

Commit e254359

Browse files
committed
Rename to arrayutilities
1 parent b1c6eab commit e254359

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+58
-58
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
arrayutils/_version.py export-subst
1+
arrayutilities/_version.py export-subst

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on:
44
pull_request:
55
paths:
66
- 'tests/**.py'
7-
- 'arrayutils/**.py'
7+
- 'arrayutilities/**.py'
88
push:
99
paths:
1010
- 'tests/**.py'
11-
- 'arrayutils/**.py'
11+
- 'arrayutilities/**.py'
1212

1313
jobs:
1414
build:

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ wheels/
2424
*.egg-info/
2525
.installed.cfg
2626
*.egg
27-
arrayutils.md
27+
arrayutilities.md
2828

2929
# PyInstaller
3030
# Usually these files are written by a python script from a template

README.md

Lines changed: 5 additions & 5 deletions

arrayutils.md

docs/generating-docs.md

Lines changed: 1 addition & 1 deletion

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ requires = ["setuptools>=61.0.0", "wheel"]
55
build-backend = "setuptools.build_meta"
66

77
[project]
8-
name = "arrayutils"
8+
name = "arrayutilities"
99
version = "1.0.0"
1010
description = "A library for list, dict, and UserDict manipulations."
1111
readme = "README.md"
@@ -20,4 +20,4 @@ keywords = ["pipeline", "library"]
2020
requires-python = ">=3.8"
2121

2222
[project.urls]
23-
Homepage = "https://github.com/borkweb/python-arrayutils"
23+
Homepage = "https://github.com/borkweb/python-arrayutilities"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import find_packages, setup
22

33
setup(
4-
name='arrayutils',
4+
name='arrayutilities',
55
packages=find_packages(),
66
version='1.0.0',
77
description='A library for list, dict, and UserDict manipulations.',

tests/test_accessible.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import unittest
2-
from arrayutils import Arr
2+
from arrayutilities import Arr
33
from collections import UserDict
44

55
class TestArr(unittest.TestCase):
@@ -20,4 +20,4 @@ def test_accessible_with_string(self):
2020

2121
# This allows the test to be run from the command line
2222
if __name__ == '__main__':
23-
unittest.main()
23+
unittest.main()

tests/test_add.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import unittest
2-
from arrayutils import Arr
2+
from arrayutilities import Arr
33

44
class TestArr(unittest.TestCase):
55
def test_add_new_key(self):

0 commit comments

Comments
 (0)