Skip to content

Commit

Permalink
misc fixes including license year
Browse files Browse the repository at this point in the history
  • Loading branch information
leifwalsh authored Dec 20, 2023
1 parent aa0f3e7 commit 1cc65fe
Show file tree
Hide file tree
Showing 32 changed files with 39 additions and 43 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018 Two Sigma Open Source, LLC
Copyright (c) 2018-2023 Two Sigma Open Source, LLC

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@

# General information about the project.
project = 'marbles'
copyright = '2018, Two Sigma Open Source, LLC'
copyright = '2018-2023, Two Sigma Open Source, LLC'
author = 'Jane Adams and Leif Walsh'

# The version info for the project you're documenting, acts as replacement for
Expand Down
8 changes: 4 additions & 4 deletions docs/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,11 @@ Pull Request Guidelines
Before you submit a pull request, check that it meets these guidelines:

1. The pull request should include tests.
2. If the pull request adds functionality, the docs should be updated. Make sure
your new functionality is documented with docstrings and appropriate
2. If the pull request adds functionality, the docs should be updated. Make
sure your new functionality is documented with docstrings and appropriate
additions to the Sphinx docs, and add the feature to the list in README.md.
3. The pull request should work for Python 3.8, 3.9, and 3.10, and on Linux,
Windows, and OS X. You'll see those checks run in your pull request.
3. The pull request should work for Python 3.8, 3.9, 3.10, and 3.11, and on
Linux, Windows, and OS X. You'll see those checks run in your pull request.
4. In order to accept your code contributions, please fill out the appropriate
Contributor License Agreement in the `cla folder
<https://github.com/twosigma/marbles/tree/master/cla>`__ and submit it to
Expand Down
8 changes: 2 additions & 6 deletions docs/maintaining.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ too, to make sure your change will build cleanly.

We've configured `nox`_ to be able to:

1. Run all the tests with Python 3.8, 3.9, and 3.10
1. Run all the tests with Python 3.8, 3.9, 3.10, and 3.11

2. Measure and report on code coverage

Expand All @@ -119,11 +119,7 @@ VS Code Tasks
~~~~~~~~~~~~~

We provide several VS Code tasks that can run common things you'll want to run
while developing. The extension ``SanaAjani.taskrunnercode`` will show them in
a convenient place in the file explorer where you can run them with one click.

If you're using the devcontainer setup, this extension will be installed for
you automatically.
while developing.

Maintaining the Changelog
-------------------------
Expand Down
Binary file modified docs/pandas-inv.txt
Binary file not shown.
Binary file modified docs/python-inv.txt
Binary file not shown.
12 changes: 6 additions & 6 deletions marbles.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
Expand All @@ -48,9 +45,12 @@
"recommendations": [
"ms-python.python",
"ms-python.vscode-pylance",
"bungcip.better-toml",
"lextudio.restructuredtext-pack",
"spmeesseman.vscode-taskexplorer"
"ms-python.flake8",
"ms-python.black-formatter",
"ms-python.mypy-type-checker",
"tamasfe.even-better-toml",
"lextudio.restructuredtext",
"trond-snekvik.simple-rst"
]
}
}
2 changes: 1 addition & 1 deletion marbles/core/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018 Two Sigma Open Source, LLC
Copyright (c) 2018-2023 Two Sigma Open Source, LLC

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
2 changes: 1 addition & 1 deletion marbles/core/marbles/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/core/marbles/__main__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/core/marbles/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/core/marbles/core/_stack.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/core/marbles/core/_version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/core/marbles/core/log.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/core/marbles/core/main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/core/marbles/core/marbles.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/core/setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018-2022 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/core/tests/examples/example_error.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/core/tests/examples/example_marbles.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/core/tests/examples/example_unittest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/core/tests/test_log.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/core/tests/test_main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/core/tests/test_marbles.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/core/tests/test_setuptools.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/mixins/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018 Two Sigma Open Source, LLC
Copyright (c) 2018-2023 Two Sigma Open Source, LLC

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
2 changes: 1 addition & 1 deletion marbles/mixins/marbles/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/mixins/marbles/mixins/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/mixins/marbles/mixins/_version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/mixins/marbles/mixins/mixins.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/mixins/setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018-2022 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion marbles/mixins/tests/test_mixins.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018-2022 Two Sigma Open Source, LLC
# Copyright (c) 2018-2023 Two Sigma Open Source, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down

0 comments on commit 1cc65fe

Please sign in to comment.